function ShowDCR (ver,id,src, w, h, rem,po,ss,bg) {
	var html = '';
	html += '<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version='+ver+'" ';
	html += ' id='+id+' width='+w+' height='+h+'>';
	html += '<param name="src" value="'+src+'" />';
	html += '<param name="swStretchStyle" value="'+ss+'" />';
	html += '<param name="bgcolor" value="'+bg+'" />';
	html += '<param name="swRemote" value="'+rem+'" />';
	html += '<embed src="'+src+'" bgcolor="'+bg+'" width="'+w+'" height="'+h+'" ';
	html += ' swRemote="\''+rem+'\' " '; 
	html += ' swStretchStyle="'+ss+'" type="application/x-director" pluginspage="http://www.macromedia.com/shockwave/download/" ></embed>';
	html += '</object>';
	document.write(html);
}
