function div (a) {
	obj = document.getElementById("sub1");
    if (a == "abre") {
		obj.style.display = "block";
	}
	else if (a == "fecha") {
		obj.style.display = "none";
	}
}

function EW_ElementShow (id)
{
	var obj = document.getElementById (id);

	if (obj != null)
	{
		obj.style.display = "block";
	}
}

function EW_ElementHide (id)
{
	var obj = document.getElementById (id);

	if (obj != null)
	{
		obj.style.display = "none";
	}
}

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

var bookmarkurl = "http://www.serseguro.pt"
	var bookmarktitle = document.title

	function addfav(){
		if (document.all)
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
}


