// JavaScript Document
var isNS = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4));
if(isNS) {
	var _all = '';
	var _style = '';
} else {
	var _all='all.';
	var _style='.style';
}
var WindowWidth;


function getwindowsize() {
	if (isNS) {
		WindowWidth = window.innerWidth;
	} else {
		WindowWidth = document.body.clientWidth;
	}
	
	if(WindowWidth>800) move(WindowWidth-220);
	else move(580);
	
}

function move(X) {
	if (isNS) {
		LOGO.moveTo(X,0)
	} else {
		LOGO.pixelLeft = X;
	}
}