// JavaScript Document

function getDate(){
// Array of month Names
var monthNames = new Array(
"January","February","March","April","May","June","July",
"August","September","October","November","December");

var now = new Date();

document.write(monthNames[now.getMonth()] + " " + 
now.getDate() + ", " + now.getFullYear());
}


function new_window(url, winwidth, winheight, winleft, wintop) {


parameters = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width="+winwidth+",height="+winheight+",left="+winleft+",top="+wintop;

link = window.open(url,"Link",parameters);




}

