// JavaScript Document
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
  if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
  function mischandler(){
  alert("This site was created by NEIL PETER B. YU- WEB DEVELOPER PLMun 2008");
   return false;
 }
  function mousehandler(e){
 	var myevent = (isNS) ? e : event;
 	var eventbutton = (isNS) ? myevent.which : myevent.button;
    if((eventbutton==2)||(eventbutton==3)) return false;
 }
 document.oncontextmenu = mischandler;
 document.onmousedown = mousehandler;
 document.onmouseup = mousehandler;
 
 function check_field(){
		if(document.frmres.resume.value==""){
			alert('Resume Field Required!');
			return false;
		}
		if(document.frmres.photo.value==""){
			alert('Photo Field Required!');
			return false;
		}
		
	}
function terms_eployer(){
	window.open("contents/employer_terms.php",null,
    "height=550,width=550,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
	
	}