function Flash(url, w, h){
var html;
html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+w+'" height="'+h+'">';
html += '<param name="movie" value="'+url+'">';
html += '<param name="wmode" value="transparent">';
html += '<param name="quality" value="high">';
html += '</object>'
document.write(html);
}


function FlashV(url, w, h, val){
var html;
html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+w+'" height="'+h+'">';
html += '<param name="movie" value="'+url+'">';
html += '<param name="wmode" value="transparent">';
html += '<param name="FlashVars" value="'+val+'" />'
html += '<param name="quality" value="high">';
html += '</object>'
document.write(html);
}

function ViewIMG(s, t){

window.open("/viewer/viewer.asp?file="+s,"viewer","width=800, height=600, resizable=1, status=0").focus();

}

function MovePlayer(url, w, h){

var html;
html =	'<object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" width="'+w+'" height="'+h+'">';
html +=        '<param name="filename" value="'+url+'">';
html +=        '<param name="AutoStart" value="1">';
html +=        '<param name="PlayCount" value="2147483647">';
html +=        '<param name="volume" value="1">';
html +=        '<param name="ShowControls" value="1">';
html +=        '<param name="ShowStatusBar" value="0">';
html +=        '<param name="EnableTracker" value="1">';
html +=        '<param name="ShowTracker" value="1">';
html +=        '<param name="ShowAudioControls" value="1">';
html +=        '<param name="ShowDisplay" value="0">';
html +=        '</object>';
document.write(html);
}