// JavaScript Document

// Creates a safe popup window

// Use this code in the a href
// <a href="#" onclick="popUp(this.href,'console',400,200);return false;" target="newWindow">
function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWindow', strOptions);
}

// Copyright Date
<script language="JavaScript" type="text/javascript"> 
 
 today=new Date(); 
 
 y0=today.getFullYear(); 
</script> 

