<!--
//****************************************************************
// COMMON JAVASCRIPT Library File (clib.js)
// Rev 1.0507.0
//****************************************************************

function OPEN_WIN(url,width,height,opt)
	// Purpose:
	//		Spawns window; because of random name, multiple windows may be opened
	// Expects:
	//		url				URL to be spawned to new window
	//		width			Window width
	//		height			Window height
	//		opt				Window options
	//							Values: 'scrollbars=yes|no,resizeable=yes|no'
	// Returns:
	//		<nothing>
	{
	var ov_win;
	var now=new Date();
	var rnd_no=now.getTime();
	var win_nm='ov_win'+rnd_no.toString();
	ov_win=window.open(url,win_nm,'width='+width+',height='+height+','+opt);
	if (navigator.appname= 'Netscape')
		ov_win.focus();
	}


// End -->
