function JS_viewObj(objhtml) { 
	document.write(objhtml); 
} 
function ActFlash(src, w, h) {
	s = '<OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 '
	s += ' height=' + h + ' width=' + w
	s += ' classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>'
	s += ' <PARAM NAME="Movie" VALUE="'+ src + '">'
	s += ' <PARAM NAME="Play" VALUE="-1">'
	s += ' <PARAM NAME="Loop" VALUE="-1">'
	s += ' <PARAM NAME="Menu" VALUE="-1">'
	s += ' <embed width="190" height="160" '
	s += ' src="' + src + '" '
	s += ' play="true" loop="true" quality="high" '
	s += ' pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
	s += ' </embed></OBJECT>'
	document.write(s);
}