// JavaScript Document

function LP_popup(w,h,url){
	var winl = (screen.width - w) / 2;
        var wint = (screen.height - h) / 2;
	window.open(url,"popup","height="+h+",width="+w+",menubar=0,resizable=0,scrollbars=1,status=0,titlebar=0,toolbar=0,left="+winl+",top="+wint);
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function charsCount(theField, numChars) {
	   strLen = theField.value.length;
	   if (strLen > numChars ) {
	      theField.value = theField.value.substring(0, numChars);
		  charsLeft = 0;
	   }
	   else {
	      charsLeft = numChars - strLen;
	   }
	   document.send.messageLength.value = charsLeft;
	}

function LP_enableform() {
	if (document.send.from_email.value != '') {
		  document.send.vaia.disabled = false;
	} 
}

function showbox(id,title) {
	var show = 0;
	if (!show) {
       html = "<form action=\"info.php\" method=\"post\" name=\"info\" id=\"info\"><table width=\"300\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tr><td valign=\"top\"><p align=\"center\">Inserite la vostra email:<br /><input name=\"from\" type=\"text\" id=\"from\" onkeyup=\"LP_enableform();\" /></p><p align=\"center\">&nbsp;</p><p align=\"center\"><input name=\"Invia\" type=\"submit\" id=\"Invia\" value=\"Invia\" disabled /><input name=\"image\" type=\"hidden\" id=\"id\" value=\""+id+"\" /><input name=\"title\" type=\"hidden\" id=\"title\" value=\""+title+"\" /></p></td><td valign=\"top\"><p>Informazioni richieste:<br /><textarea name=\"informazioni\" rows=\"4\" id=\"textarea\" onkeyup=\"LP_enableform();\"></textarea></p></td></tr></table></form>";
		document.getElementById("info").innerHTML = html;
		show = 1;
	} else { 
		document.getElementById("info").innerHTML = "" ;
		show = 0;
	}
}