//<script language="Javascript">
//---- BROWSER COMPATIBILITY SETTS ----//
theAgent=navigator.userAgent.toLowerCase();
DOM = (!document.all) && (document.layers!="undefined");
IE  = (theAgent.indexOf("webtv") == -1) && (theAgent.indexOf("opera") == -1) && (theAgent.indexOf("msie") != -1);
PNG = DOM || (IE && parseInt(parseFloat(theAgent.substring(4+theAgent.indexOf("msie"))))>6);

if(document.all && !document.getElementById){
   document.getElementById = function(id){ return document.all[id] }
}

//---- BASIC FUNCTIONS ----//
function noSpam(user) {
	locationstring = "mailto:" + user + "@eskimofabriek.be";
	window.location = locationstring;
}

function popPop(uri){
	sw=screen.width; sh=screen.height;
	feats=(!DOM)? "height=450,left="+((sw-760)*0.5)+",location=no,menubar=no,dependent=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,top="+((sh-450)*0.5)+",width=760" : "height=450,location=0,menubar=0,dependent=0,resizable=1,screenX="+((sw-760)*0.5)+",screenY="+((sh-450)*0.5)+",scrollbars=1,status=0,titlebar=0,toolbar=0,width=760"; 
	pop=open(uri,"Eskimo_popping_window",feats);
}

function popImg(uri,w,h){
	sw=screen.width; sh=screen.height;
	feats=(!DOM)? "height="+h+",left="+((sw-w)*0.5)+",location=no,menubar=no,dependent=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,top="+((sh-h)*0.5)+",width="+w : "height="+h+",location=0,menubar=0,dependent=0,resizable=1,screenX="+((sw-w)*0.5)+",screenY="+((sh-h)*0.5)+",scrollbars=1,status=0,titlebar=0,toolbar=0,width="+w; 
	winp=open("","picture",feats);
	winp.document.write("<div style='position:absolute; top:0px; left:0px;'><img src='img/rooms/"+uri+".jpg' /></div>");
	winp.document.close();
}
