  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){
			parent.document.title = tit;
  }
 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);
  }
 