/* open window */

function openWin( uri, n, w, h, f ) {
	
	if(f == null){ f = "no"; }
	var mywin = window.open( uri, n, "width=" + w + ",height=" + h + ",scrollbars=yes,menubar=" + f + ",toolbar=no,location=no,status=no,resizable=no,left=" + 10 + ",top=" + 10 );
	if(!mywin.opener) mywin.opener = self;
	if(mywin != null) mywin.focus();
	
}

function openWin1( url, n, w, h, s, m, t, l, st, r ) {
	
	if( m == null ) { 
		m = "no"; 
	}
		
	mywin = window.open( url, n, "width=" + w + ",height=" + h + ",scrollbars=" + s + ",menubar=" + m + ",toolbar=" + t + ",location=" + l + ",status=" + st + ",resizable=" + r + ",left=" + 10 + ",top=" + 10);
	if( !mywin.opener ) {
		mywin.opener = self;
	}
     	
	if( mywin != null ) {
		mywin.focus( );
	}	
}

