﻿function setFocus(id) {
    var element = document.getElementById(id);
    element.focus();
    return false;
}

function doTerms() {
    openWindow("/company/terms.aspx", 500, 1000);
}

function openWindow(pageURL, height, width) {
    window.open (pageURL, "mywindow","location=1,status=1,scrollbars=1, width=" + width + ",height=" + height +""); 
}