// JavaScript Document


function Cambia(item)
{
	controllo=""

		//img2="http://www.youbuy.it/images/noImg.gif"
		img2="images/noImg.gif"
		//alert(img2 +" -" + item )
		document.getElementById(item).src=img2
	
}

function controlla (theForm) {
	
	if (theForm.cerca.value=="") {
		alert("Inserisci almeno una parola da ricercare.")
		theForm.cerca.focus();
		return false
	}
		
	return true
}


var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=auto,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}