
// external Flash Menu Drawing
function flPromo(){		
document.write('<object id="flash" type="application/x-shockwave-flash" data="promo.swf" width="300" height="60">\n');
document.write('<param name="movie" value="promo.swf" />\n');	
document.write('<param name="quality" value="high" />\n');	
document.write('</object>\n');
}

function flAudioNews(audioName){
document.write('<object id="flash" type="application/x-shockwave-flash" data="'+audioName+'.swf" width="300" height="60">\n');
document.write('<param name="movie" value="'+audioName+'.swf" />\n');	
document.write('<param name="quality" value="high" />\n');	
document.write('</object>\n');
}

function flPromo1(){		
document.write('<object id="flash" type="application/x-shockwave-flash" data="promo1.swf" width="300" height="60">\n');
document.write('<param name="movie" value="promo1.swf" />\n');	
document.write('<param name="quality" value="high" />\n');	
document.write('</object>\n');
}

function video(movieName){		
document.write('<object id="flash" type="application/x-shockwave-flash" data="video/'+movieName+'.swf" width="440" height="400" align="middle" >\n');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="video/'+movieName+'.swf" />\n');	
document.write('</object>\n');
}

function audio(songName){		
document.write('<object id="flash" type="application/x-shockwave-flash" data="audio/'+songName+'.swf" width="300" height="60">\n');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="audio/'+songName+'.swf" />\n');	
document.write('<param name="quality" value="high" />\n');	
document.write('</object>\n');
}


