function MM_openBrWindow(theURL, intWidth, intHeight) { //v1.2

	if (intWidth==null)
		intWidth=610;
	else
		intWidth=intWidth+30
	if (intHeight==null)
		intHeight=590;
	else
		intHeight=intHeight+60;
		
  window.open(theURL,"","width="+intWidth+",height="+intHeight+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=yes");
}

function OpenURL(theURL, intWidth, intHeight) { 

	if (intWidth==null)
		intWidth=960;
	else
		intWidth=intWidth+30
	if (intHeight==null)
		intHeight=750;
	else
		intHeight=intHeight+60;
		
  window.open(theURL,"","width="+intWidth+",height="+intHeight+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=yes");
}

function XOpenURLFullSize(theURL) { 

	swidth=screen.availWidth;
	sheight=screen.availHeight;
	
	window.open(theURL,"",'top=0,left=0,screenX=' + window.screenLeft + ',screenY=' + window.screenTop + ',width=' + swidth + ',height=' + screen.sheight+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=yes');
	

}

function OpenURLFullSize(theURL) {
   var wOpen;
   var sOptions;

   sOptions = 'status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes';
   sOptions = sOptions + ',width=' + (screen.availWidth - 10).toString();
   sOptions = sOptions + ',height=' + (screen.availHeight - 122).toString();
   sOptions = sOptions + ',screenX=0,screenY=0,left=0,top=0';

   wOpen = window.open( '', 'Oslopakke2', sOptions );
   wOpen.location = theURL;
   wOpen.focus();
   wOpen.moveTo( 0, 0 );
   wOpen.resizeTo( screen.availWidth, screen.availHeight );
   return wOpen;
}


function launch()
{
	window.open("ordforklaring.html","","width=600,height=500,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=no");
}