//Javascript.js
absolutePath='http://www.wigmaster.se';

if(location.href==parent.top.location.href){
	parent.location.href=absolutePath;
}

function setState(obj,state){
document.getElementById('menu'+obj).attributes['class'].value=(state)?"menuOn":"menuOff";
}

function explain(id){
	win=openWindow('explain',absolutePath+'/explain.php?id='+id,450,240);
}

function openWindow(name,src,w,h){
	x=Math.floor(screen.width/2-w/2);
	y=Math.floor(screen.height/2-h/2);
	return window.open(src,name,'height='+h+',width='+w+',left='+x+',top='+y+',dependent=yes,alwaysRaised=yes,menubar=no,status=yes,resizeable=no,toolbar=no,titlebar=no');
}
