// Plaxtilina Comunicación Audiovisual para Inka Expediciones. ©2005 Inka Expediciones.
function popUp(tipo,nombre,ancho,alto,alt,izq,arriba) {
	ventana = window.open("","ventana","width="+ancho+",height="+alto+",scrollbars=no,left="+izq+",top="+arriba);
	ventana.document.open();
	ventana.document.write('<html><title>'+alt+'</title><body bgcolor="#F6EACD" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	if (tipo == "swf"){
		ventana.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=\"'+ancho+'\" height=\"'+alto+'\">');
		ventana.document.write('<param name=movie value=\"'+nombre+'\"><param name=quality value=high>');
		ventana.document.write('<embed src=\"'+nombre+'\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"'+ancho+'\" height=\"'+alto+'\">');
		ventana.document.write('</embed></object>');
	}else{
		ventana.document.write('<img src=\"'+nombre+'\" width='+ancho+' height='+alto+' alt=\"'+alt+'\">');
	}
	ventana.document.write('</body></html>');
	ventana.document.close();
	ventana.focus();
}
function popApp(url,alt,prop) {
 	window.open(url,alt,prop);
}