// Window Opener function
function openWindow2(pageURL, windowName, width, height, atts){
	// set sensible default values
	if (!windowName) windowName = "popup";
	if (!width) width = 450;
	if (!height) height = 300;

	attributes = "width=" + width + ",height=" + height;
	attributes = (atts) ? attributes + "," + atts : attributes;

	// open window saving a reference to the window object
	_popup = window.open(pageURL, windowName, attributes);

	// ensure window is brought to front after 1/4 second once opened
	// this will also give focus to an already open window.
	popupTimer=setTimeout("_popup.focus()",250);

	//return the window object reference
	//return _popup
}