var d = new Date()

var weekday = new Array(7);
weekday[0]="Sun";
weekday[1]="Mon";
weekday[2]="Tue";
weekday[3]="Wed";
weekday[4]="Thu";
weekday[5]="Fri";
weekday[6]="Sat"

var month=new Array(12);
month[0]="Jan";
month[1]="Feb";
month[2]="Mar";
month[3]="Apr";
month[4]="May";
month[5]="Jun";
month[6]="Jul";
month[7]="Aug";
month[8]="Sep";
month[9]="Oct";
month[10]="Nov";
month[11]="Dec";

var wd = weekday[d.getDay()];
var dt = d.getDate();
var mt = month[d.getMonth()];
var yr = d.getFullYear();

var theDate = wd+" "+dt+" "+mt+" "+yr;

function popup(theURL,winName,width,height,features) {
 
var window_width = width;
var window_height = height;
var newfeatures= features;
var window_top = (screen.height-window_height)/2;
var window_left = (screen.width-window_width)/2;
var wname = winName.replace(' ','');
newWindow=window.open(''+ theURL + '',''+wname+'','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',' + newfeatures + '');
newWindow.focus();
}
