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

