   
   var setWP = 0;
   
   setWH();
   
   function showWishesForm() {
      if (setWP == 0) {
	     if (!isMSIE && !isMSIE5) {
	        getObj("wishesForm").style.position = "fixed";
		    getObj("wishesForm").style.top = (winiy - 476)/2+"px";
		    getObj("wishesForm").style.left = (winix - 605)/2+"px";
	     }
	     else {
	        getObj("wishesForm").style.position = "absolute";
		    getObj("wishesForm").style.left = ((winix - 605)/2-140)+"px";
	     }
		 setWP = 1;
	  }
	  getObj("wishesForm").style.display = "block";
   }
   
   function closeWishesForm() {
      getObj("wishesForm").style.display = "none";
	  if (getObj("errorWDiv") != null) getObj("errorWDiv").style.display = "none";
   }
   
   function updateCodeW() {
	  getObj("secureCodeW").src = "engein/check/index.php?id="+Math.random();
   }
   
   function showResultAddWishes() {
       if (!isMSIE && !isMSIE5) {
	      getObj("resultAddWishes").style.position = "fixed";
		  getObj("resultAddWishes").style.top = (winiy - 90)/2+"px";
		  getObj("resultAddWishes").style.left = (winix - 420)/2+"px";
	   }
	   else {
	      getObj("resultAddWishes").style.position = "absolute";
		  getObj("resultAddWishes").style.left = ((winix - 420)/2-140)+"px";
	   }
   }
   
    function closeResultAddWishes() {
	   getObj("resultAddWishes").style.display = "none";
    }
   
   
