function putRealPlayer(
	url,
	width,
	height,
	controllerWidth,
	controllerHeight
) {
	str = "";

	str += '<object id="video1" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" height="'+height+'" width="'+width+'">';
	str += '<param name="controls" value="ImageWindow">';
	str += '<param name="console" value="Clip1">';
	str += '<param name="autostart" value="true">';
	str += '<param name="src" value="'+url+'">';
	str += '<embed src="'+url+'" type="audio/x-pn-realaudio-plugin" console="Clip1" controls="ImageWindow" height="'+height+'" width="'+width+'" autostart="true"></embed>';
	str += '</object><br>';

	str += '<object id="video1" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" height="'+controllerHeight+'" width="'+controllerWidth+'">';
	str += '<param name="controls" value="ControlPanel">';
	str += '<param name="console" value="Clip1">';
	str += '<embed type="audio/x-pn-realaudio-plugin" console="Clip1" controls="ControlPanel" height="'+controllerHeight+'" width="'+controllerWidth+'" autostart="true"></embed>';
	str += '</object>';

	document.open();
	document.write(str);
	document.close();
}
