function cntProductImageSelectorShowLayer(layerName,id){
	if(document.getElementById(layerName) != null) {
		document.getElementById(layerName).style.display='block';
		document.getElementById(id).className = 'selected';
	}
}
function cntProductImageSelectorHideLayer(layerName,id){
	if(document.getElementById(layerName) != null) {
		document.getElementById(layerName).style.display='none';
		document.getElementById(id).className = '';
	}
}
function cntProductImageSelectorHideAll(){cntProductImageSelectorHideLayer('cntProductDetails3D','cntProductDetails3D2');cntProductImageSelectorHideLayer('cntProductDetailsFull','cntProductDetailsFull2');cntProductImageSelectorHideLayer('cntProductDetailsGallery','cntProductDetailsGallery2');}

function openLink(newWindow, url, windowName, toolbar, menubar, location, directories, statusbar, scrollbars, titlebar, resizable){
    if(newWindow){
        window.open(url, windowName, 'toolbar='+1*toolbar+',menubar='+1*menubar+',location='+1*location+',directories='+1*directories+',statusbar='+1*statusbar+',scrollbars='+1*scrollbars+',titlebar='+1*titlebar+',resizable='+1*resizable+'')
    }
    else{
        document.location.href=url;
    }
}
