function showMonthYear(){
var todayDate = new Date();
var sMonthName = new Array("January","February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")

sMonthYear  = sMonthName[todayDate.getMonth() ] + " " +  todayDate.getFullYear()
document.write(sMonthYear)

}


function openWindow(url, name, width, height, features) {
	var top, left;
	var s;
	width = (typeof(width) == 'undefined') ? 300 : width;
	height = (typeof(height) == 'undefined') ? 500 : height;
	left = (screen.width) ? ((screen.width / 2) - (width / 2)) : 0;
	top = (screen.height) ? ((screen.height / 2) - (height / 2)) : 0;
	s = "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top;
	window.open(url, name, s, features);
}


function openPrintWin(popURL,winName,features){
	var PrintWin=window.open(popURL,winName,features);
	PrintWin.focus();
                PrintWin.print();
	}





