// Written by Frank Maskus 1-23-03
// new window script edited 10-17-2003

var windowRef=""

function n_window(theurl)
{
	var the_width=410
	var the_height=350
	var from_top=140
	var from_left=220
	var the_atts='width='+the_width+',height='+the_height+',top='+from_top+',screenY='+from_top+',left='+from_left+',screenX='+from_left
	windowRef=window.open(theurl,'',the_atts)
        windowRef.focus()
}

function focusHandler(){
	if(windowRef!="" && windowRef.closed==false){
		windowRef.close()
		windowRef=""
	}
}
