// funzione per far aprire un pop up
function gowindow(str, titolo,w,h) {
	openwin = window.open(str,titolo,'width='+ w +',height='+ h +',status=no,scrollbars=no,resizable=no,location=no,toolbar=no');
}
// Preload immagini
function ImgPreload(img) {
	var a=new Image(); a.src=img; return a; 
}