// JavaScript Document
function SetFocus(){
	if(document.getElementById('set_focus_to')){
		var field = document.getElementById('set_focus_to').value
		if(field){	
			eval("document.getElementById('" + field +"').focus()")
			return
		}
	}
}

function InsertSampleMovie(filepath, width, height){
	document.write('\n<object width="' + width + '" height="' + height + '" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
	document.write('<param name="src" value="' + filepath + '" />\n');
	document.write('<param name="autoplay" value="false"/>');
	document.write('<param name="controller" value="true"/>');
	document.write('<embed src="' + filepath + '" width="' + width + '" height="' + height + '" autoplay="false" controller="true" pluginspage="http://www.apple.com/quicktime/download/">');
	document.write('</embed>');
	document.write('</object>\n');
}

window.onload = SetFocus;
