// JavaScript Document


function PopUp(ref)
	{	
	var strFeatures="toolbar=no,status=no,menubar=no,location=no,resizeable=no,titlebar=no"
	strFeatures=strFeatures+",height=675,width=775"
	
	newWin = window.open(ref,"TellObj",strFeatures);

       newWin.opener = top;
	}
