function swfHtml(filename, witdh, height) {
return '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+witdh+'" height="'+height+'">'+
'<param name="movie" value="'+filename+'">'+
'<param name="quality" value="high">'+
'<param name="wmode" value="transparent">'+
'<param name="menu" value="false">'+
'<embed src="'+filename+
'" width="'+witdh+
'" height="'+height+
'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false"></embed></object>';
}
var dtipo=mouseX=mouseY=0;
$().mousemove(function(e){mouseX=e.pageX;mouseY=e.pageY});
function verDep(pid,id){
$('#depobj').html(swfHtml(depDir+pid+'/'+id+'/d.flv',265,210));
$('#depvideo').css({height:'auto',left:parseInt((758-290)/2)+'px',top:parseInt(mouseY-150)+'px'}).fadeIn();
dtipo=0;
}
function verDepTxt(id){
$('#depobj').html('<div id="depobjtxt"><div id="deptxtspc">'+$('#dep'+id).html()+'</div></div>');
$('#depvideo').css({left:parseInt((758-400)/2)+'px',top:parseInt(mouseY-150)+'px'}).fadeIn();
dtipo=1;
}
function closeDep(){
if(!dtipo)$('#depobj').html('<div id="depobjt"></div>');
$('#depvideo').fadeOut();
}
