 function showFlash(swf, w, h)
 {
 var isMSIE = navigator.appName.indexOf("Microsoft") != -1;
 var l1 = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+w+'" height="'+h+'" id="slideshownewest" align="middle" bgcolor="#ffffcc">'
 var l2 = '<param name="movie" value="'+swf+'" />'
 var l3 = '<param name="menu" value="false" />'
 var l4 = '<param name="quality" value="best" />'
 var l5 = '<param name="swLiveConnect" value="true" />'
 var l6 = '<param name="FlashVars" value="initialURL='+document.location+'&isMSIE='+isMSIE+'" />'
 var l7 = '<embed src="'+swf+'" FlashVars="initialURL='+document.location+'&isMSIE='+isMSIE+'" menu="false" quality="best" width="'+w+'" height="'+h+'" name="slideshownewest" align="middle" swLiveConnect="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" bgcolor="#ffffcc"></embed></object>'
 document.write(l1+l2+l3+l4+l5+l6+l7);
}

