var newwindow;
function ExhibitPopUp(ref)
{
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=650,width=750"
	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=500,width=700"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}


