<!--
function winPrint(){
if (window.print) 
{
  window.print();
}
else
{
  alert("Sorry! Your Web Browser DOES NOT support this print method. Close this window and select File > Print from your Menus.");
}
}
//-->

<!-- Begin
var good;
function checkEmailAddress(field) {
// the following expression must be all on one line...
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
if (goodEmail) {
good = true;
}
else {
alert('Please enter a valid e-mail address.');
field.focus();
field.select();
good = false;
}
}
u = window.location;
m = "Check out this URL that I'm emailing to you.";
function mailThisUrl() {
good = false
checkEmailAddress(document.eMailer.address);
if (good) {
// the following expression must be all on one line...
window.location = "mailto:"+document.eMailer.address.value+"?subject="+m+"&body="+document.title+" "+u;
}
}
// End -->

<!-- Begin
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

// End -->

<!--begin
/*
 * Popup code generated by PopUpMaster Pro from 
 * http://popupmaster.com
 * Copyright (c)2003, Steve Shaw, takanomi.com
 */
var popup;
var height=500;
var width=500;
var left=(screen.width/2)-(500/2);
var top=(screen.height/2)-(500/2);
function linkpop(filename){
popup = window.open(filename, "","height="+height+",width="+width+",top="+top+",left="+left+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,directories=no");
}
// end -->
