
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=809,height=526');");
}

function popUpWidthHeight(URL, width, height) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + "');");
}

/* ================== start basic Validation scripts ================ */
function checkLength(ctrl,maxLength){
  taLength=ctrl.value.length; // look at current length
  if (taLength>maxLength) { // clip characters
    ctrl.value = ctrl.value.substring(0,maxLength);
    //alert('This field only accepts ' + maxLength + ' characters');
  }
}
/* =================== end basic Validation scripts ================= */
