<!-- 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=450"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
	
}

function PrintPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=550,width=600"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}

