<!--
function blockError(){return true;}
window.onerror = blockError;
// -->
function open_new_window(name,width,height) 
{
appStr="width="+ width + ",height=" + height + ",left=20,top=20,scrollbars=no"
new_window = open(name,"hoverwindow", appStr);
new_window.focus();
}
function open_popupfesta() 
{
	appStr="width=500,height=600,left=10,top=10,scrollbars=yes"
	//new_window1 = open("festa.htm","hoverwindow", appStr);
}

function readCookie(name) {
	 var theCookie=""+document.cookie;
	 var ind=theCookie.indexOf(name);
	if (ind==-1 || cookieName=="") 
		return "NO"; 
	
	return "OK";
}

function open_questionario() 
{
	var x=readCookie("questionario");
		if (x=="NO")
	{
		appStr="width=490,height=510,left=10,top=10,scrollbars=no";
		new_window1 = open("popup.html","hoverwindow", appStr);
	}
}


