﻿// JScript File
           
function ValidateDuration(src, args)
{

 var type;
 type = document.getElementById('Master$Main$Job$Type');
  //alert(type.value);
  if (type.checked)
        args.IsValid = true;
  else
    {
    //alert('perm');
    var duration;
    duration = document.getElementById('Master$Main$Job$Duration');
    if (duration.value == '')
        args.IsValid = false;
    else
        args.IsValid = true;
  
  }
}

function DisableEnter()
{

    if (window.event.keyCode == 13) 
    {
        event.returnValue=false; 
        event.cancel = true;
    }

}
