/* 
   utils.js for Heelys.it
   designed by Federico Ceccherelli
   sito: http://fceccherelli.altervista.org
   email: f.ceccherelli@gmail.com
   MSN: f.ceccherelli@hotmail.it
   SKYPE: callto://federico.ceccherelli
*/

function showPic (pic) {
	if (document.getElementById) {
		document.getElementById('vista_attuale').src = pic.href;
		document.getElementById('vista_attuale').setAttribute('alt', 'Foto ingrandita di ' + pic.childNodes[0].getAttribute('alt'));
		return false;
	} else {
		return true;
	}
}

function showPMap (map, w, h) {
	if (document.getElementById) {
		var title = map.childNodes[0].getAttribute('alt');
		var l = Math.floor((screen.width-w)/2);
		var t = Math.floor((screen.height-h)/2);
		var preview = window.open("","","width=" + w + ", height=" + h + ", top=" + t + ", left=" + l + ", status=no, menubar=no, toolbar=no, scrollbar=no");
		
		preview.document.write("<html>\n");
		preview.document.write("<head>\n");
		preview.document.write("<title>" + title + "</title>\n");
		preview.document.write("<link href=\"css/screen.css\" rel=\"stylesheet\" type=\"text/css\"  media=\"screen\" />\n");
		preview.document.write("<link rel=\"shortcut icon\" href=\"images/favicon.ico\" />\n");
		preview.document.write("</head>\n");
		preview.document.write("<body>\n");
		preview.document.write("<img src=\"" + map.href + "\" alt=\"" + title + "\" />\n");
		preview.document.write("</body>\n");
		preview.document.write("</html>\n");
		preview.document.close();
		return false;
	} else {
		return true;
	}
}
function PPreview(file, w, h, title) {
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);	
	var preview = window.open("","","width=" + w + ", height=" + h + ", top=" + t + ", left=" + l + ", status=no, menubar=no, toolbar=no, scrollbar=no");
	preview.document.write("<html>\n");
	preview.document.write("<head>\n");
	preview.document.write("<title>" + title + "</title>\n");
	preview.document.write("<link href=\"css/screen.css\" rel=\"stylesheet\" type=\"text/css\"  media=\"screen\" />\n");
	preview.document.write("<link rel=\"shortcut icon\" href=\"images/favicon.ico\" />\n");
	preview.document.write("</head>\n");
	preview.document.write("<body>\n");
	preview.document.write("<img src=\"" + file + "\" alt=\"" + title + "\" />\n");
	preview.document.write("</body>\n");
	preview.document.write("</html>\n");
	preview.document.close();
}

function ConversionTable() {
	var l = Math.floor((screen.width-488)/2);
	var t = Math.floor((screen.height-200)/2);
	window.open("tabella_conversione_misure.html","","width=488, height=200, top=" + t + ", left=" + l + ", status=no, menubar=no, toolbar=no, scrollbar=no, resizable=yes");
}
