function gaibu_script_file(value_a,value_b,value_c){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="' +value_a);
document.write('" width="232" height="162">');
document.write('<param name="movie" value="' +value_b);
document.write('">');
document.write('<param name="quality" value="high">');
document.write('<embed src="' +value_b);
document.write('" quality="high" pluginspage="' +value_c);
document.write('" type="application/x-shockwave-flash" width="232" height="162"></embed>');
document.write('</object>');
}

function nonClick() {
	var inpTags = document.getElementsByTagName('INPUT');
	for(i = 0 ; i < inpTags.length ; i++){
		if(inpTags[i].type == 'image' || inpTags[i].type == 'submit') {
			inpTags[i].disabled = true;
		}
	}
	var aTags = document.getElementsByTagName('A');
	for(k = 0 ; k < aTags.length ; k++){
		aTags[k].disabled = true;
		aTags[k].href = '#';
		aTags[k].target = '';
	}
}

function goLocation(url){
	document.location = url;
}

function goSubmit(form){
	document.forms[form].submit();
}
