function showrm(urlstr,widthstr,heightstr){
	var temphtml='';
	temphtml += '';
	temphtml += '<div style=\"width:' + widthstr + 'px;\">';
	temphtml += '<object id=\"RVOCX\" classid=\"CLSID:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\" width=\"' + widthstr + '\" height=\"' + heightstr + '\">';
	temphtml += '<param name=\"SRC\" value=\"' + urlstr + '\" />';
	temphtml += '<param name=\"CONTROLS\" value=\"ImageWindow\" />';
	temphtml += '<param name=\"CONSOLE\" value=\"cons\" />';
	temphtml += '<param name=\"autostart\" value=\"true\" />';
	temphtml += '<embed autostart=\"true\" src=\"' + urlstr + '\" type=\"audio/x-pn-realaudio-plugin\" width=\"' + widthstr + '\" height=\"' + heightstr + '\" controls=\"ImageWindow\" console=\"cons\"> <\/embed>';
	temphtml += '<\/object>';
	temphtml += '<object id=\"RVOCX\" classid=\"CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA\" width=\"' + widthstr + '\" height=\"30\" >';
	temphtml += '<param name=\"SRC\" value=\"' + urlstr + '\" />';
	temphtml += '<param name=\"CONTROLS\" value=\"ControlPanel\" />';
	temphtml += '<param name=\"CONSOLE\" value=\"cons\" />';
	temphtml += '<embed src=\"' + urlstr + '\" type=\"audio/x-pn-realaudio-plugin\" width=\"' + widthstr + '\" height=\"30\" controls=\"ControlPanel\" console=\"cons\" > <\/embed>';
	temphtml += '<\/object>';
	temphtml += '<div>';
	document.write(temphtml);
}