function getObject(passName, thew, theh)
{
  	var objName = passName;
  	
  	if(thew < 1){
  		var setwidth = 400;
  	}else{
  		var setwidth=thew;
  	}
  	if(theh < 1){
  		var setheight = 240;
  	}else{
  		var setheight=theh+16;
  	};
  	
   	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width='+setwidth+' height='+setheight+' codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
	document.write('<param name="autoplay" value="true" />\n');
	document.write('<param name="controller" value="true" />\n');
	document.write('<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" />\n');
	document.write('<param name="target" value="myself" />\n');
	document.write('<param name="type" value="video/quicktime" />\n');
	document.write('<embed src='+passName+' width="'+setwidth+'" height="'+setheight+'" autoplay="true" controller="true" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself"></embed>\n');
	document.write('</object>\n');
}
