top.window.moveTo(0,0)

if (document.all) 
   {top.window.resizeTo(screen.availWidth,screen.availHeight);}
else 
   if (document.layers||document.getElementById) 
      {if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
          {top.window.outerHeight = screen.availHeight;
           top.window.outerWidth = screen.availWidth;}
}

function LoadPage() 
{frames['Main'].window.location = '../main.html'}

function LoadPageUK()
{frames['Main'].window.location = '../mainUK.html'}

function Init() {
 top.window.moveTo(0,0)

 if	(document.all) 
		{top.window.resizeTo(screen.availWidth,screen.availHeight);}
 else { 
		if	(document.layers||document.getElementById) {
				if	(top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth) {
					top.window.outerHeight = screen.availHeight;
					top.window.outerWidth = screen.availWidth;
				}
 		}
 }

 // msieversion()

 // if	( msieversion() == 0 ) {
		// f1 = document.getElementById("frameset1")
		// f1.frameSpacing="0";
		// f1.borderLeftColor="#000000";
		// f1.borderRightColor="#000000";
		// f1.borderTopColor="#000000";
		// f1.borderBottomColor="#000000";
		// f1.frameBorder=0;
		// f2 = document.getElementById("frameset2")
//  }
//  else {
		// frameset1.frameSpacing=0;
		// frameset1.frameBorder=0;
		// frameset1.borderLeftColor="#000000";
		// frameset1.borderRightColor="#000000";
		// frameset1.borderTopColor="#000000";
		// frameset1.borderBottomColor="#000000";
		// frameset1.borderTopWidth="none";
		// frameset1.borderLeftWidth="none";
		// frameset1.borderLeftWidth="none";
		// frameset2.frameSpacing=0;
		// frameset2.borderLeftColor="#FFFFFF";
		// frameset2.borderRightColor="#FFFFFF";
		// frameset2.borderTopColor="#FFFFFF";
		// frameset2.borderBottomColor="#FFFFFF";
		// frameset2.borderTopWidth="none";
		// frameset2.borderLeftWidth="none";
 // }
// DspVenster('Top')
// DspVenster('Left')
// DspVenster('Main')
// DspVenster('Right')
// DspVenster('Bottom')

// frames['Main'].window.location = 'intro/intro.HTML'
// frames['Main'].window.location = 'intro/introxmas.HTML'
}

 // Return Microsoft Internet Explorer (major) version number, or 0 for others.
 // This function works by finding the "MSIE " string and extracting the version number
 // following the space, up to the decimal point for the minor version, which is ignored.

//  function msieversion() {
	// var ua = window.navigator.userAgent
	// var msie = ua.indexOf ( "MSIE " )
	// if	(msie > 0)			// is Microsoft Internet Explorer; return version number
// 			return parseInt (ua.substring (msie+5, ua.indexOf ( ".", msie )))
	// else
// 			return 0					// is other browser
// }