var ant_cabeza = "";
var ant_cuerpo = "";

$(document).ready(function() {
});


function verNoticia(id){
	ant_cabeza = $('#encabeza').html();
	ant_cuerpo = $('#comunica').html();
	$('#encabeza').html('<a href="javascript:volver();" class="desc"><img src="img/atras.jpg" border="0" width="19" height="10">VOLVER ATR&Aacute;S</a><br /><br />');
	$.get('gestiones/cargar_noticia.php', {id:id}, function(data){
		$('#comunica').html(data);//.css('padding-left','22px');
	});
}

function verConsorcio(id){
	ant_cabeza = $('#encabeza').html();
	ant_cuerpo = $('#comunica').html();
	$('#encabeza').html('<a href="javascript:volver();" class="desc"><img src="img/atras.jpg" border="0" width="19" height="10">VOLVER ATR&Aacute;S</a><br />');
	$.get('consorcios/'+id+'.html', {}, function(data){
		$('#comunica').html(data);//.css('padding-left','22px')
	});
}

function volver(){
	$('#encabeza').html(ant_cabeza);
	$('#comunica').css('padding-left','0').html(ant_cuerpo);
}

function IEFlash(movieName,movieWidth,movieHeight,movieWMode){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+movieWidth+'" height="'+movieHeight+'">');
	document.write('<param name="movie" value="'+movieName+'">');
	document.write('<param name="quality" value="high">');
	if(movieWMode=="true"){
		document.write('<param name="wmode" value="transparent">');
	}
	document.write('<embed src="'+movieName+'" quality="high" wmode=transparent pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+movieWidth+'" height="'+movieHeight+'"></embed></object>');
}

