//script to open popup window
//reference inside head tag: script language="JavaScript" src="auxwin.js"
//also include this code in body, inside A tag where link to open popup is
//HREF="javascript:openAuxWin('theURLtoOpen','_target','height=210,width=350,features'
//HREF="javascript:openAuxWin('rimeet.htm','_blank','height=210,width=350,scrollbar=yes'

	

	function openAuxWin(theURL,winName,features) { //v1.2
     newWin = window.open(theURL,winName,features);
     newWin.focus()
	}

	


