function hola()
{
	//alert("Hola");
}

function Imprimir(imagen)
{
    newWindow = window.open("","","width=710,height=450,left=100,top=60");
    newWindow.document.open();
    newWindow.document.write('<html><head></head><body onload="window.print()"><img src="'+ imagen +'"/></body></html>');  
    newWindow.document.close();
    newWindow.focus();
}
