function CargarFoto(nombre,lax,lay,texto)
{
	win = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height='+lay+',width='+lax+',top=10,left=10');
	win.document.writeln ('<html>');
	win.document.writeln ('<head><title>Imagen ampliada</title></head>');
	win.document.writeln ('<style type="text/css"> body {background-repeat:no-repeat}</style>');
	win.document.writeln ('<body ONCLICK="javascript:window.close()" bgcolor="#000000" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
	win.document.writeln ('<table width=100% height=100%>');
	win.document.writeln ('<td align=center valign=middle>');
	win.document.writeln ('<img border=0 src="' + nombre +'">');
	win.document.writeln ('</td>');
	win.document.writeln ('</table>');
	win.document.writeln ('</body>');
	win.document.writeln ('</html>');
}

function CargarFoto2(nombre,lax,lay,texto)
{
	win = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height='+lay+',width='+lax+',top=10,left=10');
	win.document.writeln ('<html>');
	win.document.writeln ('<head><title>Imagen Lote</title></head>');
	win.document.writeln ('<style type="text/css"> body {background-repeat:no-repeat}</style>');
	win.document.writeln ('<body ONCLICK="javascript:window.close()" bgcolor="#000000" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
	win.document.writeln ('<img border=0 src="' + nombre +'">');
	win.document.writeln ('</body>');
	win.document.writeln ('</html>');
}