<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var flashcolor		= "0669CE"		// FLASH BACKGROUND COLOR: "0669CE"
var color		= "0669CE"		// HEADER BACKGROUND COLOR: "0669CE"
var flashheight		= "79"			// HEIGHT OF THE FLASH (IN PIXELS): "60"
var flashwidth		= "700"			// WIDTH OF THE FLASH (IN PIXELS): "625"
var showimage 		= "no"	 		// SHOW A SMALL IMAGE ON THE HEADER RIGHT SIDE: "yes"
var imaglink		= "inicio.html"		// SMALL IMAGE PAGE LINK: "index.html"
var bordercolor		= "D4DFEE"		// HEADER BOTTOM BORDER COLOR: "D4DFEE"
var borderIMGcolor	= "666666"		// IMAGE LEFT BORDER COLOR: "666666"




// COPYRIGHT 2007 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// START FLASH HEADER

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" BACKGROUND="picts/nube011-backgnd3000px.jpg" style="border-bottom: #'+bordercolor+' 1px solid;"><tr><td ALIGN="LEFT">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="logo" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="logo.swf">');
document.write('<PARAM NAME=quality VALUE=high>');
document.write('<EMBED src="logo.swf" quality=high  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="logo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br>');
document.write('</td><td align="right" width="60">');
   if (showimage == "yes") {
document.write('<a href="'+imaglink+'"><img src="picts/header_image.jpg" border="0" style="border-left: #'+borderIMGcolor+' 1px solid;"></a><br>');
}
else {
document.write('<img src="picts/spacer.gif" width="10" height="10"><br>');
}
document.write('</td></tr></table>');


// **********************************************************
// The following code will enable the right-click protection
// **********************************************************

var message="Lo sentimos, right-click protection activada. Sorry, right-click protected.";
if (navigator.appName == 'Microsoft Internet Explorer'){
function NOclickIE(e) {
if (event.button == 2 || event.button == 3) {
alert(message);
return false;
}
return true;
}
document.onmousedown=NOclickIE;
document.onmouseup=NOclickIE;
window.onmousedown=NOclickIE;
window.onmouseup=NOclickIE;
}
else {
function NOclickNN(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=NOclickNN; }
document.oncontextmenu=new Function("alert(message);return false")
}



//  End -->