function AddSwf(swf,width,height) {

    var theWidth = 767;
    var theHeight = 498;

    if (width == null) {
        theWidth = 767;
    } else {
        theWidth = width;
    }

    if (height == null) {
        theHeight = 498;
    } else {
        theHeight = height;
    }

    var acTags = '<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="' + theWidth + '" height="' + theHeight + '" >'
             + '<param name="movie" value="' + swf + '" />'
             + '<param name="wmode" value="transparent" />'
             + '<param name="quality" value="high" />'
			 + '<param name="menu" value="false" />'
             + '<embed src="' + swf + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + theWidth + '" height="' + theHeight + '" wmode="transparent"></embed>'
             + '</object>';
    document.write(acTags);
}

