function prodCompare()
{
    var selectedProducts = "";
    var cmpURL = "";
    for(var count = 0; count < document.frmSearchCompare.elements.length; count++)
    {
        if(document.frmSearchCompare.elements[count].type == "checkbox")
        {
            if(document.frmSearchCompare.elements[count].checked == "1")
            {
                selectedProducts = selectedProducts + document.frmSearchCompare.elements[count].value + "|" ;
				document.frmSearchCompare.elements[count].checked = false;
            }
        }
    }

    selectedProducts = selectedProducts.substring(0, selectedProducts.length-1);

    cmpURL = 'prodCompare.php?products='+selectedProducts;
	newWindow = window.open(cmpURL,'Compare','toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=700,height=400,left=50,top=150');
}


function BerksPopup(img){ 
foto1= new Image(); 
foto1.src=(img); 
Controlla(img); 
} 
function Controlla(img){ 
if((foto1.width!=0)&&(foto1.height!=0)){ 
viewFoto(img); 
} 
else{ 
funzione="Controlla('"+img+"')"; 
intervallo=setTimeout(funzione,20); 
} 
} 
function viewFoto(img){ 
largh=foto1.width+20; 
altez=foto1.height+20; 
stringa="width="+largh+",height="+altez; 
finestra=window.open(img,"",stringa); 
} 

function popupInhome() {
	document.getElementById('inhomewarn').style.display = 'block'; 
}

function closeInhome() {
	document.getElementById('inhomewarn').style.display = 'none'; 
}
