function showFlashOJD() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="753" height="311" title="center_animation">' +
				'<param name="movie" value="/imgfiles/PGD/img/center.swf" />' +
				'<param name="quality" value="high" />' +
				'<param name="wmode" value="transparent" />' +
				'<embed src="/imgfiles/PGD/img/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="753" height="311" wmode="transparent"></embed>' +
			'</object>');
}
function showbanner() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="185" height="108" title="Susc&iacute;base">' +
				'<param name="movie" value="/imgfiles/PGD/img/banner.swf" />' +
				'<param name="quality" value="high" />' +
				'<param name="wmode" value="transparent" />' +
				'<embed src="/imgfiles/PGD/img/banner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="185" height="108" wmode="transparent"></embed>' +
			'</object>');
}
function showFlashpgd_banner() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="727" height="89" title="Susc&iacute;base">' +
				'<param name="movie" value="/imgfiles/PGD/img/pgd_banner.swf" />' +
				'<param name="quality" value="high" />' +
				'<param name="wmode" value="transparent" />' +
				'<embed src="/imgfiles/PGD/img/pgd_banner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="727" height="89" wmode="transparent"></embed>' +
			'</object>');
}
function menuID(menuItem, id) {
	var div = document.getElementById(id);
	div.style.display = "";
	div.style.color = "#FFFFFF"; 
	menuItem.style.backgroundColor = "#635A21";	
	menuItem.style.borderTop = "2px solid #B29A52";
	menuItem.style.color = "#ffffff";
} 

function quitarID(menuItem, id) { 
	var div = document.getElementById(id);
	div.style.display = "none"; 
	div.style.color = "#000000"; 
	menuItem.style.backgroundColor = "#837828";
	menuItem.style.borderTop = "2px solid #7F6324";
}

function itemOver(menuItem) {
	menuItem.style.backgroundColor = "#635A21";
	menuItem.style.borderTop = "2px solid #B29A52";
	menuItem.style.color = "#ffffff";
}

function itemOut(menuItem) {
	menuItem.style.backgroundColor = "#837828";
	menuItem.style.borderTop = "2px solid #7F6324";
	
}
function itemOver2(menuItem) {
	menuItem.style.backgroundColor = "#837828";
	menuItem.style.border ="none";
	menuItem.style.color = "#ffffff";
}

function itemOut2(menuItem) {
	menuItem.style.backgroundColor = "#635A21";
	menuItem.style.border ="none";

}

//esta funcion es para el menu

//esta funcion es para depslegar los diarios 
function desaparecer() { 
	var obj = document.getElementById("show");
	var f = document.getElementById("flecha");
	if (obj.style.display != "none") { 
		f.src = "img/icon_flecha.gif";
		obj.style.display = "none"; 
	} else {
		obj.style.display = "block"; 
		f.src = "img/icon_flecha2.gif";
	}
}

function aparecer() { 
	var obj = document.getElementById("show"); 
	obj.style.display = "block";
} 

function desaparecer(id) {
	var obj = document.getElementById(id);
	var img = document.getElementById("flecha_" + id);
	
	if (obj.style.display == 'none') { 
		obj.style.display = 'block';
		img.src = "/imgfiles/PGD/img/icon_flecha2.gif";
	} else {
		obj.style.display = 'none';
		img.src = "/imgfiles/PGD/img/icon_flecha.gif";
	}
}