

//	Open Lunarbook window script
function enter_lunarbook(){
	var brede = screen.width * 0.99
	var hojde = screen.height * 0.71
	var name = navigator.appName
		if (name == "Microsoft Internet Explorer"){
			self.open("http://lunarmedia.com/base/lunarbook/lunarbook.html", "parent", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,height=" + hojde + ",width=" + brede + ",top=0,left=0")
		}
	 	else
		{
			window.open("http://lunarmedia.com/base/lunarbook/lunarbook.html", "parent", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,height=" + hojde + ",width=" + brede + ",top=0,left=0")
		}
};

