
function confirmdelete() 
{
var agree=confirm("Are you sure you wish to delete this job?");
if (agree)
	return true ;
else
	return false ;
}

var VBS = false;
/* The actual print function */

function prePrint()
{
	if (window.print) window.print();
	else if (VBS) printIt();
	else alert('This script does not work in your browser');
}

function DisabSub(btn)
{
btn.disabled = true;
}





function chkpwd(w) {
 var StrengthValue
 
 // The bigger the value the stronger the password
 
 StrengthValue = 0; 
 
 x1 = /^[a-z\d]{6,}$/i; // only alphanumerics, and length 6+
 x2 = /[a-z]/i;         // a letter present
 x3 = /\d/;             // a digit present
  
 // Increase the StrengthValue value according to the password strength
 
 if (x1.test(w) == true) {StrengthValue = StrengthValue + 1;};
 if (x2.test(w) == true) {StrengthValue = StrengthValue + 1;};
 if (x3.test(w) == true) {StrengthValue = StrengthValue + 1;};
 

 
 // Show the correct meter according to StrengthValue value 
 
 if (StrengthValue == 0) {
  document.getElementById("div1").innerHTML = "";
  document.getElementById("div2").innerHTML = "Not Rated"; 
  document.getElementById("div3").innerHTML = "";   
  document.getElementById("td1").style.backgroundColor = "#EBEBEB";
  document.getElementById("td2").style.backgroundColor = "#EBEBEB";
  document.getElementById("td3").style.backgroundColor = "#EBEBEB";  
 };    
 if (StrengthValue == 1) {
  document.getElementById("div1").innerHTML = "Weak";
  document.getElementById("div2").innerHTML = "";
  document.getElementById("div3").innerHTML = "";
  document.getElementById("td1").style.backgroundColor = "#FF4545";
  document.getElementById("td2").style.backgroundColor = "#EBEBEB";
  document.getElementById("td3").style.backgroundColor = "#EBEBEB";  
 };
 if (StrengthValue == 2) {
  document.getElementById("div1").innerHTML = "";
  document.getElementById("div2").innerHTML = "Medium";
  document.getElementById("div3").innerHTML = "";  
  document.getElementById("td1").style.backgroundColor = "#FFD35E";
  document.getElementById("td2").style.backgroundColor = "#FFD35E";
  document.getElementById("td3").style.backgroundColor = "#EBEBEB";    
 };
 if (StrengthValue == 3) {
  document.getElementById("div1").innerHTML = "";
  document.getElementById("div2").innerHTML = "";
  document.getElementById("div3").innerHTML = "Strong";
  document.getElementById("td1").style.backgroundColor = "#3ABB1C";
  document.getElementById("td2").style.backgroundColor = "#3ABB1C";
  document.getElementById("td3").style.backgroundColor = "#3ABB1C";    
 }; 
 
 if (w.length < 5) {
  document.getElementById("div1").innerHTML = "";
  document.getElementById("div2").innerHTML = "Not Rated"; 
  document.getElementById("div3").innerHTML = "";   
  document.getElementById("td1").style.backgroundColor = "#EBEBEB";
  document.getElementById("td2").style.backgroundColor = "#EBEBEB";
  document.getElementById("td3").style.backgroundColor = "#EBEBEB";    
 }
 
 
}
