<!--
// disable right click menu

//document.oncontextmenu = function(){return false}
//if(document.layers) {
//    window.captureEvents(Event.MOUSEDOWN);
//    window.onmousedown = function(e){
//        if(e.target==document)return false;
//    }
//}
//else {
//    document.onmousedown = function(){return false}
//}


function poppy(Purl, Pname, Pvars) {
	x = window.open(Purl,Pname,Pvars);
}

function viewComp(talentID) {
	reID = new RegExp(/(^-?\d\d*$)/);
	if (!reID.test(talentID)) {
		alert("Please enter a valid One Source Talent ID.");
		return false;
	} else {
    	window.location.href = '/compcard/view.cfm/talent/' + talentID + '.htm' ;
	}
	return false;
}

   function validateit() {
	temp = true;
	if ((document.theLogin.username.value == '' || document.theLogin.password.value == '') || (document.theLogin.username.value == 'username' && document.theLogin.password.value == 'password')) {
  		temp = false;
  		alert('Username and password must be provided to continue...');
	}
	return temp;
}
//-->