// JavaScript Document

function hideLayer(whichLayer) {

	if (document.getElementById) {
	// this is the way the standards work
	document.getElementById(whichLayer).style.visibility = "hidden";
	}
	else if (document.all) {
	// this is the way old msie versions work
	document.all[whichlayer].style.visibility = "hidden";
	}
	else if (document.layers) {
	// this is the way nn4 works
	document.layers[whichLayer].visibility = "hidden";
	}

}
function handleClick(whichClick) {

	if (whichClick == "hide it") {
	// then the user wants to hide the layer
	hideLayer("campanha");
	
	}
	else if (whichClick == "show it") {
	// then the user wants to show the layer
	showLayer("campanha");
	}

}

//document.write (window.location);

aa= window.location + '';
aa=aa.split("/")[2];

//document.write (aa);



dominios = new Array("www.domdigital.local");
flagfind=false;
for(var i=0; i < dominios.length; i++) {
	if(dominios[i]==aa) {flagfind=true;	}
}

if(flagfind==true) 
	{
		document.write ('<div id="campanha" style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #333333; position:absolute; z-index:100; top:10px; right:10px; width: 260px; border: solid 1px #333333; padding: 5px; background-color: #FFFFFF;">');
		document.write ('<p><b style="font-size: 11px; color: #000000;">Campanha de Solidariedade em Portugal a favor das Vítimas da tragédia do maremoto:</b></p>');
		document.write ('<p><b>SOS Criança da Ásia, da UNICEF</b><br/>');
		document.write ('CGD - NIB: 003501270002824123054<br/>');
		document.write ('<b>Médicos do Mundo</b><br/>');
		document.write ('BPI - NIB: 003505510000772213032<br/>');
		document.write ('<b>Missão na Ásia da AMI</b><br/>');
		document.write ('BES - NIB: 000700154000000672<br/>');
		document.write ('<b>Caritas</b><br/>');
		document.write ('CGD - NIB: 003506970063091793082<br/>');
		document.write ('<b>Cruz Vermelha</b><br/>');
		document.write ('BPI - NIB: 001000001372227000970</p>');
		document.write ('<p><a href="#" onclick=\'handleClick("hide it"); return false\'>Fechar</a></p>');
		document.write ('</div>');
	}

