function showImage(pUrl, winName, htmlText)
{
	var s_width = '';
	var s_height = '';
	var popup;
	var p_img = "<div align='center' style='font-family:Verdana; font-size:11px'>"
	+ "<img src='"+pUrl+"' border='0' alt='immagine' />"
	+ "<br /><br />"
	+ htmlText+"</div>";
	s_width = screen.width;
	s_height = screen.height;
	
	popup = window.open("","","height="+s_height+", width="+s_width+", scrollbars=yes, resizable=yes");
	
	if(!popup)
	{
		alert("E' Necessario Abilitare i Pop-Up per Visualizzare l'Immagine");
	}
	popup.document.write(p_img);
	popup.document.close();
}

function caricaSito()
{
	oggetto = prendiElementoDaId("avanti");
	
	oggetto.action = "svdesign.php";
	
	oggetto.submit();
}

function prendiElementoDaId(id_elemento) {

 var elemento;

 if(document.getElementById)
 {
	elemento = document.getElementById(id_elemento);
 }
 else
 {
	elemento = document.all[id_elemento];
 }
 return elemento;
}