function PopUp(pagina,w,h) { 
window.open(pagina, 'PopUp','scrollbars=no,status=no,menubar=no,width='+w+',height='+h);
}

		function addToFav() {
			var browserName = navigator.appName
			var browserVer = parseInt(navigator.appVersion)

			if ((browserName == "Microsoft Internet Explorer") && (browserVer >= 4))
					window.external.AddFavorite(document.location,document.title);
		}

 var fin=null; 
 var bordo=1; 
 function visualizzaimg(img) 
  { 
  var bordo=1; 
  if (fin&&!fin.closed) 
   fin.close(); 
  fin=window.open("about:blank","fin","top=0,left=100,width=100,height=100,scrollbars=no,location=no,statusbar=no,resizable=yes"); 
 
  with (fin.document) 
   { 
   open(); 
   writeln("<html><head>"); 
   writeln("<SCR"+"IPT>"); 
   writeln("function dimensioni()"); 
   writeln("{"); 
   writeln("self.resizeTo(document.imm.width + 12 * "+bordo+",document.imm.height + 55 * "+bordo+");"); 
   writeln("}");  
   writeln("function riapri2()"); 
   writeln("{"); 
   writeln("setTimeout('dimensioni()',100)"); 
   writeln("}"); 
   writeln("</SCR"+"IPT>");  
   writeln("<title>EMercatino.it</title>"); 
   writeln("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad=\"riapri2()\">"); 
   writeln("<table bgcolor='#ffffff' border=0 width='100%' height='100%' cellspacing=0 cellpadding="+bordo+"><tr><td><img src='"+img+"' border='0' name='imm'></td></tr></table>"); 
   writeln("</body></html>"); 
   close(); 
   }  
   fin.focus(); 
  }


var ns6=document.getElementById&&!document.all

function restrictinput(maxlength,e,placeholder){
if (window.event&&event.srcElement.value.length>=maxlength)
return false
else if (e.target&&e.target==eval(placeholder)&&e.target.value.length>=maxlength){
var pressedkey=/[a-zA-Z0-9\.\,\/]/ //detect alphanumeric keys
if (pressedkey.test(String.fromCharCode(e.which)))
e.stopPropagation()
}
}

function countlimit(maxlength,e,placeholder){
var theform=eval(placeholder)
var lengthleft=maxlength-theform.value.length
var placeholderobj=document.all? document.all[placeholder] : document.getElementById(placeholder)
if (window.event||e.target&&e.target==eval(placeholder)){
if (lengthleft<0)
theform.value=theform.value.substring(0,maxlength)
placeholderobj.innerHTML=lengthleft
}
}

function displaylimit(thename, theid, thelimit){
var theform=theid!=""? document.getElementById(theid) : thename
var limit_text='mancano <font color="#ff0000"><strong><span id="'+theform.toString()+'">'+thelimit+'</span></strong></font> caratteri da digitare per raggiungere il limite consentito'
if (document.all||ns6)
document.write(limit_text)
if (document.all){
eval(theform).onkeypress=function(){ return restrictinput(thelimit,event,theform)}
eval(theform).onkeyup=function(){ countlimit(thelimit,event,theform)}
}
else if (ns6){
document.body.addEventListener('keypress', function(event) { restrictinput(thelimit,event,theform) }, true); 
document.body.addEventListener('keyup', function(event) { countlimit(thelimit,event,theform) }, true); 
}
}