// ---------------------------------------------- 
// FileName: wjexternal.js
// LastModified: 11.01.08
// Location: www.rolle.no/j/
// FirstUpload:	22.05.04 in www.aage.no
// ---------------------------------------------- 

// Set message in statusbar
status = "2000-2008 © www.rolle.no/www.aage.no";// 

// ---------------------------------------------- 
// Break-out-of-frames script
// ---------------------------------------------- 

{if (self!=top) {top.location=self.location.href;};} 

// ---------------------------------------------- 
// Fix IE6 Scrolling Bug
// tightmen.js
// ---------------------------------------------- 

if (document.all && window.attachEvent) window.attachEvent("onload", fixWinIE);
function fixWinIE() {
if (document.body.scrollHeight < document.all.wrapper.offsetHeight) {
document.all.wrapper.style.display = 'block';
}
}

// ---------------------------------------------- 
// Netscape 4 Browsers resizing a page
// ---------------------------------------------- 

if (document.layers) { 
origWidth = innerWidth; 
origHeight = innerHeight; 
} 

function reloadPage() { 
if (innerWidth != origWidth || innerHeight != origHeight) 
location.reload(); 
} 

if (document.layers) onresize = reloadPage;
