function flashView(_url, wsize, hsize, wmode) {
    document.write();
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width=' + wsize + ' height=' + hsize + ' VIEWASTEXT ID="Object1">');
    document.write('<param name="movie" value=' + _url + ' />');
    document.write('<param name="quality" value="high">');
    document.write('<param name="wmode" value="transparent">');
    document.write('<param name="menu" value="false">');
    document.write('<embed src=' + _url + ' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width=' + wsize + ' height=' + hsize + '></embed>');
    document.write('</object>');
    document.write();
} 