function generarPDF(){
	if (window.frames['iframe'] == null){
     		//alert('No tenemos iframe');
		url = window.location.href;
		window.location.href = url + "&format=pdf";
    	}else{
		alert('No es posible generar un pdf de esta página\nPruebe imprimir en un archivo pdf');
		//document.frames['iframe'].location.href = url;	
		//alert('SÍ Tenemos iframe');
     		//alert(window.frames['iframe'].location.href);
		//url = window.frames['iframe'].location.href;
		//window.frames['iframe'].location.href = url;
	}
}


