var newwindow;
function ProductPopUp(ref)
{
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=660,width=620"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
	
}

function SizingPopUp(ref)
{
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=310,width=630"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}


