<!--
function checkform(){
if (document.kernicterus_contact.Name.value == "") {
    alert( "Please enter your name." );
    document.kernicterus_contact.Name.focus();
    return false ;
  }else if (document.kernicterus_contact.Email.value == "") {
    alert( "Please enter your email address." );
    document.kernicterus_contact.Email.focus();
    return false ;
  }else if (document.kernicterus_contact.Phone.value == "") {
    alert( "Please enter your phone number." );
    document.kernicterus_contact.Phone.focus();
    return false ;
  } 
return true ;
}

function popupDisclaimer(){
    var url = "http://www.kernicteruslaw.com/disclaimer.html";
    var width = 250;
    var height = 250;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + ",status=0,scrollbars=0,resizable=0,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url, "myDisclaimer", windowFeatures);
}

function popupPrivacy(){
    var url = "http://www.kernicteruslaw.com/privacy.html";
    var width = 500;
    var height = 500;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + ",status=0,scrollbars=1,resizable=1,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url, "myPrivacy", windowFeatures);
}
-->
