function openView(imagepath, itemname, choice) 
{
	window.open('/home/catalog/zoom.asp?CP='+imagepath+'&I='+itemname+'&C='+choice, '','menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,width=550,height=550,left=170,top=0');
}

function popWindow( WinPath)
{
	var WinSpec;
	var WinW = 800;
	var WinH = 540;
	WinSpec = "width=" + WinW + ",height=" + WinH + ",left=10,top=10,screenX=10,screenY=10,scrollbars";
	window.open(WinPath,'abc',WinSpec);
}
