// JavaScript Document
function createflash(fname,h,w)
{
document.write("<OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab #version=6,0,29,0 height=" + h + " width=" + w + " classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>");
document.write("<PARAM NAME='movie' VALUE='" + fname + "'><PARAM NAME='quality' VALUE='high'>");
document.write("<PARAM NAME='menu' VALUE='false'>");
//document.write("<PARAM NAME='BGCOLOR' VALUE='208BBF'>");
document.write("<embed src='" + fname + "' quality='high' menu=false pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + w + "' height='" + h + "'></embed></OBJECT>");
}