

function info(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function apri(cc) {
	window.open(cc, '_self');
}

function zoom_foto(namewindow,imageName,imageWidth,imageHeight,posLeft,posTop) {  // luca was here
	newWindow = window.open("",namewindow,"width="+imageWidth+",height="+imageHeight+",scrollbars=no,left=50,top=50");
	newWindow.document.open();
	newWindow.document.write('<html><title>| &copy; www.veripack.com - all right reserved |</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"&copy; all right reserved\">');	
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function info_fix(theURL,winName) { //v2.0
  window.open(theURL,winName,"scrollbars=yes,resizable=yes,width=560,height=660");
}

function email(name, domain, ext)
{
   var address = name + "\u0040" + domain + "." + ext;
   var url = "mailto:" + address;

   	//document.write("<a href=\"" + url + "\>""" + address + "</a>");
    document.write( "<a href=\"" + url + "\">" +address + "</a>");
}
