function showRm(vidsrc,vidwidth,vidheight){
document.write('<OBJECT id="rvocx" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="' + vidwidth + '" height="' + vidheight + '">');
document.write('<param name="src" value="' + vidsrc + '">');
document.write('<param name="autostart" value="false">');
document.write('<param name="controls" value="imagewindow">');
document.write('<param name="console" value="video">');
document.write('<param name="loop" value="false">');
document.write('<EMBED src="' + vidsrc + '" width="' + vidwidth + '" height="' + vidheight + '" loop="false" type="audio/x-pn-realaudio-plugin" controls="imagewindow" console="video" autostart="false">');
document.write('</OBJECT>');
}