function open_popup(theURL,winName,features) { 
	popup=window.open(theURL,winName,features);
	popup.focus()
}
function open_window(theURL,winName,features) { 
	window.open(theURL,winName,features);
}




