function popupWindow(asset,style)
{
	if (style == 'external') {
		document.popWin = window.open(asset, 'AntxInc','height=625,width=750,location=yes,scrollbars=yes,menubars=yes,toolbars=yes,resizable=yes,status=yes,top=150,left=150');
	} else if (style == 'internal') {
		document.popWin = window.open(asset, 'AntxInc','height=625,width=750,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=no,top=150,left=150');
	} else if (style == 'pdf') {
		//alert(navigator.userAgent);
		if(navigator.userAgent.indexOf('Safari') != -1) {
			//Safari
			window.location = asset;
		} else if(navigator.userAgent.indexOf('Mac') != -1) {
			//Mac Power PC
			document.location = asset;
		} else if(navigator.userAgent.indexOf('Opera') != -1) {
			//Opera
			document.location = asset;
		} else {
			//Other
			document.popWin = window.open(asset, 'AntxInc','height=625,width=750,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=no,top=150,left=150');
		}
	}
	document.popWin.focus();
}
function productImageZoom(level, product, image)
{
	var path = '';
	for (i=0; i<level;i++) {
		path = path + '../';
	}
	var asset =  path + 'web/zoom.asp?product=' + product + '&image=' + image;
	document.popWin = window.open(asset, 'AntxInc','height=400,width=400,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=no,top=0,left=0');
	document.popWin.focus();
}
function popupImage(level, imagefile)
{
	var path = '';
	for (i=0; i<level;i++) {
		path = path + '../';
	}
	var asset = path + 'web/popup-image.asp?imagefile=' + imagefile; //alert(asset);
	document.popWin = window.open(asset, 'AntxInc','height=400,width=400,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=no,top=0,left=0');
	document.popWin.focus();
}
function productGallery(level, product,count)
{
	var path = '';
	for (i=0; i<level;i++) {
		path = path + '../';
	}
	var asset = path + 'web/gallery.asp?product=' + product + '&image=1&count=' + count;
	document.popWin = window.open(asset, 'AntxInc','height=600,width=800,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=no,top=0,left=0');
	document.popWin.focus();
}
