var newWindow;

function showWindow(theURL, windowName) {

	newWindow = window.open(theURL, windowName, "width=300,height=350,top=0,left=0,scrollbars=yes,resizable=yes");

	if(javascript_version > 1.0)

	{

		//delay a bit here because IE4 encounters errors

		//when trying to focus a recently opened window

 		setTimeout('newWindow.focus();',250);

	}





}	



