//Get Date
var today=new Date();
var year=today.getFullYear();
var todaysdate= (year);

//Popup Window
function openwin(winName,file,height,width) 
{
window.open(file,winName,"status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=no,menu=no,height="+height+",width="+width);
}

//Encode email so Bots can't find it
function writeEmail(tla,dom,nam) {
document.write("<a href='mailto:"+nam+"@"+dom+"."+tla+"'>"+nam+"@"+dom+"."+tla+"</a>");
}
