﻿function OpenWindow(href) {
    if (href != '') {
        window.open(href, null, 'fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=700,height=500')
    }
}

function OpenSizedWindow(href, width, height) {
    if (href != '') {
        window.open(href, null, 'fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height)
    }
}

function open_agreement_window(sLocation) {
    window.open('/CPE/agreement2.asp?location=' + sLocation, 'TIA', 'top=20,left=20toolbar=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=yes,width=640,height=480');
}
