function delayerC() {

 	window.location = "contatti.php"
 	
}

  function delayer() {
        	
        	window.location = "eventi.php"
  }
  

function plimg(img,h,center) {

  if ( center == 1 ) {
    w=780;
    folder='';
  } else {
     if ( screen.width < 1024 ) {
        w=10;
        folder='800/';
     } else {
        if ( screen.width == 1024 ) {
           w=122;
           folder='1024/';
	      } else { 
	        w=250;
	        folder='1280/';
	      }
	   }
  }
  document.write("<td width='"+w+"' height='"+h+"'>");
  document.write("<img border='0' src='layout/"+folder+img+"' width='"+w+"' height='"+h+"'></td>");
 }

function popUp(mypage, myname, w, h, scroll) {
   var winl = (screen.width - w) / 2;
   var wint = (screen.height - h) / 2;
   
   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
   win = window.open(mypage, myname,winprops);
   win.window.resizeTo(w,h);

   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}