function imprimeIframe()
{
//iframeId.document.body.win
//alert('hola');
window.frames['iframeId'].focus();
window.frames['iframeId'].print();
}
function imprimeDiv()
{
	//var lsthtml = '<html><body>' + manuales_contenido_interior_manuales.outerHTML + '</body></hmtl>';
	var lsthtml = '<html><body>' + manuales_contenido_interior_manuales.outerHTML + '</body></hmtl>';
	var ventana = open();
	ventana.document.open();
	ventana.document.clear();
	ventana.document.write(lsthtml);
	    ventana.document.writeln("<script>");
            ventana.document.writeln("window.print()");
            ventana.document.writeln("</"+"script>");
            ventana.document.close();
}

function abreWiki()
{
	//var lsthtml = '<html><body>' + manuales_contenido_interior_manuales.outerHTML + '</body></hmtl>';
	var lsthtml = '<html><body>' + manuales_contenido_interior_manuales.outerHTML + '</body></hmtl>';
	var ventana = open();
	ventana.document.open();
	ventana.document.clear();
	ventana.document.write(lsthtml);
	    //ventana.document.writeln("<script>");
            //ventana.document.writeln("window.print()");
          //  ventana.document.writeln("</"+"script>");
            ventana.document.close();
}


function OpenPopup()
			{
				if (window.showModalDialog) {
			            window.showModalDialog("/paginas/registropopup.aspx","mywindow",
			            "dialogWidth:600px;dialogHeight:570px");
			        } else {
			            mywindow= window.open ("/paginas/registropopup.aspx", "mywindow","menubar=0,toolbar=0,location=0,resizable=1,status=1,scrollbars=1,width=650px,height=500px");
			            mywindow.moveTo(300,300);
			            if (window.focus)
			                mywindow.focus();
				}  

			}

function popUp()
			 {
				day = new Date();
				id = day.getTime();
				//eval("ventana_secundaria  = window.open('/paginas/registropopup.aspx', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=700,left = 0,top = 0');");
				eval("ventana_secundaria  = window.open('http://www.clikisalud.info/paginas/registropopup.aspx', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=700,left = 0,top = 0');");
				
				
			}

