  //functions  
  function setResolution() {
	w = window.screen.availWidth;
	h = window.screen.availHeight;
	window.resizeTo(w,h);
	window.moveTo(0,0);
	window.focus();
  }

  function writeEmailAddress(nme, dom, cou, cla){
           document.write("<a href='mailto:"+nme+"@"+dom+"."+cou+"' class="+cla+" >"+nme+"@"+dom+"."+cou+"</a>");
  }
  
  function changeTitle(tit){
			document.title = tit;
  }

 function changePhoto(img, btn_id){
	document.getElementById('btn'+btn_active).className="menulink";
	btn_active = btn_id;
	document.getElementById('btn'+btn_active).className="menulink_active";
	document.getElementById('photo').innerHTML='<img src="'+img+'" alt="" />';
	window.focus();
 }
 
 function hideDiv(id){
	document.getElementById(id).style.display="none";
 }
 
 function showDiv(id){
	document.getElementById(id).style.display="block";
 }
 
 //another wonderfull script by Karel "bigger than Jesus" Bouvyn
  function setSize(minW, minH){
			if(document.body.clientHeight<minH){
				document.getElementById("flashcontent").style.height = minH-1+"px";
			} else {
				document.getElementById("flashcontent").style.height = "100%";
			}
			if(document.body.clientWidth<minW){
				document.getElementById("flashcontent").style.width = minW-1+"px";
			} else {		
				document.getElementById("flashcontent").style.width = "100%";
			}
			void(0);
  }

