function popupac(){	

      var uyarmadeger = GetCookie('uyarma2');
      var uyarmadeger3 = GetCookie('uyarma3');
      var uyarmadeger7 = GetCookie('uyarma7');
      var uyarmadeger10 = GetCookie('uyarma10');
      var uyarmadeger5 = GetCookie('uyarma5');
      //alert (uyarmadeger);

window.open('/popups/popup12.htm','','top=50 ,left=700, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,status=no,location=no, directories= no,height=150,width=450');      
window.open('/popups/popup10.htm','','top=50 ,left=50, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,status=no,location=no, directories= no,height=450,width=600');




     	if (uyarmadeger == null){
      	window.open('/popups/popup1.htm','','top=200 ,left=250, toolbar=no, menubar=no, scrollbars=no, resizable= no,status=no,location=no, directories= no,height=155,width=350');
      	}



}   
      
    





 function getCookieVal (offset) {
         var endstr = document.cookie.indexOf (";", offset);
         if (endstr == -1)
            endstr = document.cookie.length;
         return unescape(document.cookie.substring(offset, endstr));
      }
      
      
 function GetCookie (name) {
              var arg = name + "=";
              var alen = arg.length;
              var clen = document.cookie.length;
              var i = 0;
              while (i < clen) {
                      var j = i + alen;
                      if (document.cookie.substring(i, j) == arg)
                              return getCookieVal (j);
                      i = document.cookie.indexOf(" ", i) + 1;
                              if (i == 0)
                                      break;
                      }
         return null;
      
 }
      