function popUp3(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=790,height=590,left = 12,top = 34');");
}
//--------------------------------------------------------------------------------//
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=900,height=600,scrollbars=yes,resizable=yes');
return false;
}
//--------------------------------------------------------------------------------//
function popup2(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=625,height=390,scrollbars=yes,resizable=no');
return false;
}
//--------------------------------------------------------------------------------//
function checkAgree(Form1) {
 if (Form1.agree.checked == false) {
 alert ('You must agree to our Terms and Conditions, Please check the box to continue.');
 return false;
 } else {
 return true;
 }}