<!--
var newwin;

function launchwin(winurl,winname,win_width,win_height,win_scroll) 
{
    if (win_scroll != 'yes') {
        var win_scroll = 'no';
    }
    
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,'width=' + win_width + ',height= ' + win_height + ',fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=' + win_scroll + ',resizable=yes');
	if(javascript_version > 1.0)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}


function launchwinBlur(winurl,winname,win_width,win_height) 
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,'width=' + win_width + ',height= ' + win_height + ',fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes');
	if(javascript_version > 1.0)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.blur();',250);
	}
}

//-->