// JavaScript Document

function visible(src){

document.getElementById('popupvelo').style.display="block";
document.getElementById('popupint').style.display="block";

document.getElementById('popupfoto').innerHTML="<img id='myImage' src='"+src+"' />";
}
function oculta(){

document.getElementById('popupvelo').style.display="none";
document.getElementById('popupint').style.display="none";
document.getElementById('popupfoto').innerHTML="";
}

function writeFlash(url,w,h){
		  url=url+'.swf';
	
	var peli;
		  peli='<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='+w+' height='+h+'>';
          peli+='<param name="movie" value='+url+'>';
		  if (document.all)
          peli+='<param name="quality" value="high">';
		  peli+='<param name="wmode" value="transparent">';
          peli+='<embed src='+url+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" width='+w+' height='+h+'></embed>';
		  peli+='</object>';

    document.write(peli);
}

function popUp(url,nombre,w,h,s){
x = (screen.width) ? (screen.width-w)/2 : 0;
y = (screen.height) ? (screen.height-h)/2 : 0;
y-=30;//por la barra de herramientas

propiedades =
'height='+h+',width='+w+',top='+y+',left='+s+',scrollbars='+s+'+'

mywindow= window.open(url,nombre,propiedades);
//la doy foco
mywindow.window.focus();
}
