			<!--
    		function ShowPopup(page)
    		{
    		Window = window.open(page,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,width=404,height=424');
    		}
			// -->
			<!--  
				function returnDate() {
				  var this_month = new Array(12);
				  this_month[0]  = "Jan";
				  this_month[1]  = "Feb";
				  this_month[2]  = "Mar";
				  this_month[3]  = "Apr";
				  this_month[4]  = "May";
				  this_month[5]  = "Jun";
				  this_month[6]  = "Jul";
				  this_month[7]  = "Aug";
				  this_month[8]  = "Sep";
				  this_month[9]  = "Oct";
				  this_month[10] = "Nov";
				  this_month[11] = "Dec";
				  var this_day = new Array(7);
				  this_day[0]  = "Sun";
				  this_day[1]  = "Mon";
				  this_day[2]  = "Tues";
				  this_day[3]  = "Wed";
				  this_day[4]  = "Thur";
				  this_day[5]  = "Fri";
				  this_day[6]  = "Sat";
				  var today = new Date();
				  var day   = today.getDate();
				  var month = today.getMonth();
				  var year  = today.getYear();
				  var weekday = today.getDay();
				  if (year< 1900) 
				    year += 1900;
				  SrcStr = (this_day[weekday]+", "+day+" "+this_month[month]+", "+year);
				  document.write(SrcStr);	  
				}
				
		    function ExplorerFix() {
			    for (a in document.links) document.links[a].onfocus = 
			    document.links[a].blur;
		    }
			
		    if (document.all) {
			    document.onmousedown = ExplorerFix;
		    }
			// -->