// JavaScript Document
	// Opens a pop up scrollable window and then centers it on the screen
		function openScrWindow(myURL, myName, myHeight, myWidth, scr, resize, toolbar) 
		{
		comment_win=window.open(myURL,myName,"height="+myHeight+",width="+myWidth+",scrollbars="+scr+",resizable="+resize+",toolbar="+toolbar+",titlebar="+toolbar+"")
		comment_win.moveTo(screen.width/2-350,screen.height/2-350)
		}
	// Focus the cursor on the field name in the specified form
		function focusform(form_name, field_name)
		{
			temp=eval('document.'+form_name+'.'+field_name+'')
			temp.focus()
			temp.select()//to allow select boxes as well
		}