function go(n,u,w,h,x) 
{
	var remote=null;

	var args="width="+w+",height="+h+",resizable=no,scrollbars=no,status=no,menubar=no,toolbar=yes,location=no";
	remote=window.open(u,n,args);
	if (remote != null)
	{
		if (remote.opener == null)
			remote.opener = self;
	}
	if (x == 1) { return remote; }
}

function OpenNewBrowser(Url) 
{	
		awnd=go("new",Url,600,350,1);
		awnd.focus();
}

