// JavaScript Document
function openCerca(){
	$('BoxCerca').style.display = $('BoxCerca').style.display=="none" || $('BoxCerca').style.display=="" ? "block" : "none";
}
function openPrivacy(){
	var w=500;
	var h=600;
	var wind = window.open("privacy.html","Privacy","resizable=yes,scrollbars=yes,status=no,location=no,width="+w+",height="+h);
	wind.moveTo((screen.width-w)/2,(screen.height-h)/2);
}
