
	//Onfocus Blur
	function bluring(){ 
		if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
	} 
	document.onfocusin=bluring; 



	//Mouse RollOver Images
	function changeMenuImage(sourceImage, targetImageSrc)
	{
		sourceImage.src = targetImageSrc;
	}



	// Mouse Click, Drage
	/*
	function clickIE() {if (document.all) {(message);return false;}}
	function clickNS(e) {if 
	    (document.layers||(document.getElementById&&!document.all)) {
	    if (e.which==1||e.which==2||e.which==3) {(message);return false;}}}
	    if (document.layers) 
	        {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
	    else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
	        document.oncontextmenu=new Function("return false")
	function disableselect(e){
	    return false
	}
	*/
	function reEnable(){
	    return true
	}
	    document.onselectstart=new Function ("return false")
	    if (window.sidebar){
	        document.onmousedown=disableselect
	        document.onclick=reEnable
	}
	
	


	//PNG
	function setPng24(obj)
	{
		obj.width=obj.height=1;
		obj.className=obj.className.replace(/\bpng24\b/i,'');

	        obj.style.filter =

	        "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
	        obj.src=''; 
	        return '';
	}
	
	
	
	//POPUP
	function fileupload()
	{
		window.open('/_recruit/popup_fileupload.asp', 'openwindow', 'width=460, height=200, left=100, top=100, location=no, resizable=no, scrollbars=no, menubar=no, toolbars=no, directories=no');
	}