
	// Funcion Popup 
	
	ventanas=new Array();
	
	function abre(destino,name,ancho,alto){	
	/*
	
	var ScreenWidth = window.screen.width;
	
    var ScreenHeight = window.screen.height;
	
    placementx = (ScreenWidth/2)-(ancho/2);
	
    placementy = (ScreenHeight/2)-(alto/2);
	
	*/
	
    placementx = 100;
	
    placementy = 100;
	
	propietats = "";
	
	propietats += "width=" + ancho;
	
	propietats += ", height=" + alto;
	
	propietats += ", left=" + placementx;
	
	propietats += ", top=" + placementy;
	
	if (ventanas[name] != undefined) ventanas[name].close();
			
	ventanas[name] = window.open(destino,name,propietats);
					
	}
	
	//////
	
	
	// Otra opcion insertar flash
	
	function insertarFlash(name,width,height){
		
		document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'">');
		document.write('<param name="allowScriptAccess" value="sameDomain" />');
		document.write('<param name="movie" value="'+name+'" /><param name="wmode" value="transparent"><param name="menu" value="false" /><embed src="'+name+'" quality="high" width="'+width+'" height="'+
					   height+'" quality="high" allowScriptAccess="sameDomain" wmode="transparent" menu="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
		document.write('</object>');
		
	}