function flash(c,d,e) {
 var flash_tag = "";
 flash_tag = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
 flash_tag +='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ';
 flash_tag +='WIDTH="'+c+'" HEIGHT="'+d+'" >';
 flash_tag +='<param name="movie" value="'+e+'">';
 flash_tag +='<param name="quality" value="high">';
 flash_tag +='<embed src="'+e+'" quality="high" wmode="transparent" bgcolor="#ffffff" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
 flash_tag +='type="application/x-shockwave-flash"  WIDTH="'+c+'" HEIGHT="'+d+'"></embed></object>'

 document.write(flash_tag);

}

function display_notice(el_name) {
	el_title_name1 = document.getElementById('title_notice');
	el_title_name2 = document.getElementById('title_jobs');
	el_list_name1 = document.getElementById('main_notice_all');
	el_list_name2 = document.getElementById('main_notice_job');
	if (el_name == "main_notice_job") {
		el_list_name1.style.display = "none";
		el_list_name2.style.display = "block";
		el_title_name1.src = "images/main/btnnoticeoff.jpg"
		el_title_name2.src = "images/main/btnschool.jpg"
	} else {
		el_list_name1.style.display = "block";
		el_list_name2.style.display = "none";
		el_title_name1.src = "images/main/btnnotice.jpg"
		el_title_name2.src = "images/main/btnschooloff.jpg"
	}
}


startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";		
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload= function(){
    startList(); 
}

function clearText(element)
{
  element.value = "";
}

