function GetDate() {
	var today = new Date;
	var day = today.getDate();
	var month = today.getMonth();
	var year = today.getYear();
	var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
	return day + ' ' + months[month] + ', ' + year;
}


function popupexample(mylink, windowname, width, height) {
  return popup1(mylink, windowname, width, height, 20, 20, 'no', 'no', 'yes', 'no', 'no', 'no'); 
}

function popupscreen(mylink, windowname, width, height) {
  return popuphelp(mylink, windowname, width, height);
}

function popuphelp(mylink, windowname, width, height) {
  return popup1(mylink, windowname, width, height, 20, 20, 'yes', 'yes', 'yes', 'yes', 'no', 'no'); 
}

function popup(mylink, windowname, width, height) {  
  return popup1(mylink, windowname, width, height, 20, 20, 'no', 'no', 'yes', 'no', 'no', 'no'); 
}

function popups(mylink, windowname, width, height) {
  return popup1(mylink, windowname, width, height, 20, 20, 'yes', 'yes', 'yes', 'no', 'no', 'no'); 
}


function popup1(mylink, windowname, width, height, top, left, resizeable, scrollbars, status, toolbar, menubar, location) {
	if (! window.focus) return true;
	var href;
	var sFeatures;
	if (typeof(mylink) == 'string')
		href=mylink;
	else
		href=mylink.href;

	sFeatures = "width=" + width + 
			",height=" + height + 
			",top=" + top + 
			",left=" + left + 
			",resizeable=" + resizeable +
			",scrollbars=" + scrollbars + 
			",status=" + status + 
			",toolbar=" + toolbar + 
			",menubar=" + menubar + 
			",location=" + location;

	window.open(href, windowname, sFeatures);
	return false;
}

