function PopUp(ref)
{	
	var strFeatures="toolbar=no,status=no,menubar=no,location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=800,width=600"
	
	newWin = window.open(ref,"TellObj",strFeatures);
       newWin.opener = top;
}
