// JavaScript Document

		var oneDate = new Date();
        var theDay = oneDate.getDay();
        var theMonth = oneDate.getMonth();
       
	    if (theDay==1){document.write(' Monday')}
		if (theDay==2){document.write(' Tuesday')}
		if (theDay==3){document.write(' Wednesday')}
		if (theDay==4){document.write(' Thursday')}
		if (theDay==5){document.write(' Friday')}
		if (theDay==6){document.write(' Saturday')}
		if (theDay==0){document.write(' Sunday')}
		
		document.write(', ')
		
		if (theMonth==0){document.write('Jan. ')}
		if (theMonth==1){document.write('Feb. ')}
		if (theMonth==2){document.write('March ')}
		if (theMonth==3){document.write('Apr. ')}
		if (theMonth==4){document.write('May. ')}
		if (theMonth==5){document.write('Jun. ')}
		if (theMonth==6){document.write('Jul. ')}
		if (theMonth==7){document.write('Aug. ')}
		if (theMonth==8){document.write('Sept. ')}
		if (theMonth==9){document.write('Oct. ')}
		if (theMonth==10){document.write('Nov. ')}
		if (theMonth==11){document.write('Dec. ')}
		
		this.document.write(oneDate.getDate()+', '+oneDate.getFullYear())
 


