// Exit console
var pop = 1;
function open_fs()
{
	if (pop==0) return;
	hgt=screen.availHeight;
	wdt=screen.availWidth;
	newwin=window.open("about:blank","mastapopup1","left=10000,top=10000,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,directories=yes");
	self.focus();
	try { 
	   if(newwin.resizeTo(wdt,hgt)) 
		  throw "Error 1" 
	   else
	   {
		newwin.resizeTo(wdt,hgt);
		newwin.moveTo(0,0);
		newwin.location=URL1;
	   }
	} 
	catch(er) {
	newwin=window.open(URL1,"mastapopup1","left=10000,top=10000,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,directories=yes");
	} 
}

function open_fs_force()
{
	newwin=window.open(URL1,"mastapopup1","left=10000,top=10000,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,directories=yes");
}

