<!-- function to pop up products -->
function ProductPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=600,width=550"
	strFeatures=strFeatures+",left=200,top=20"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}


