

	//This launches a new window and then
	//focuses it if window.focus() is supported.
function launchNewWin(winurl,winname)
{
	newwin = window.open(winurl,winname,'scrollbars=no,resizable=no,width=300,height=450');
	if(parseInt(navigator.appVersion) >= 4)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}

