﻿    var newwindow;
    function popOpen(url)
    {
	    newwindow=window.open(url,'name','height=600,width=750, left=100, top=100, location=no, scrollbars=yes');
	    if (window.focus) {newwindow.focus()}
    }    

    function validate(form) {
    if(!document.frmMain.agree.checked){
        alert("Please verify that you have read and understand the terms and conditions");
        return false; 
    }
    return true;
    }

