 function gowindow(str,scroce,w,h) {
 openwin = window.open(str,scroce,'width='+ w +',height='+ h +',status=no,scrollbars=yes,resizable=no,location=no,toolbar=no');
 } 
 
 function gowindow1(str,scroce,w,h) {
 openwin = window.open(str,scroce,'width='+ w +',height='+ h +',status=no,scrollbars=no,resizable=no,location=no,toolbar=no');
 } 


 function winview (iname,imagepath,w,h,wtitle) {
var wo = window.open("", "wv" + iname , "directories=no,menubar=no,resizable=no,width=" + ( w ) + ",height=" + ( h ) , true );
	wo.document.write('<HEAD><script language="javascript"> function closeme() { self.close(); wo = null ; }<');
	wo.document.write("/script>");
	wo.document.write('<TITLE>' + wtitle + '</TITLE></HEAD>');
	wo.document.write('<body>');
	wo.document.write('<div style="position: absolute; left:0px; top:0px;">');
	wo.document.write('<a href="javascript:closeme();">');
	wo.document.write('<img src="' + imagepath + '" width="' + w + '" height="' + h + '" border="0" alt="Chiudi">');
	wo.document.write('</a>');
	wo.document.write('</div>');
	wo.document.write('</body>');
}

	function random(){

		var scroce;	
	
		var n1 = Math.random()*1;

		var n2 = Math.round(n1); 

		if(n2 == 0) scroce = 'santacroce_santuario.jpg';	
		/*else if (n2 == 1) scroce = '';*/
		else if (n2 == 1) scroce = 'santacroce_santuario.jpg';
		/*else if (n2 == 3) scroce = '';	*/	
		else scroce = 'santacroce_santuario.jpg';	
		
		return scroce;
	}
