var day, month, yy, year;
var months = new makeArray('January','February','March',
    'April','May','June','July','August','September',
    'October','November','December');
date = new Date();
day  = date.getDate();
month = date.getMonth() + 1;
yy = date.getYear();
year = (yy < 1000) ? yy + 1900 : yy;

function imgOver(varBtnName){
	document[varBtnName].src = "images/selected.gif";
}

function imgOut(varBtnName){
	document[varBtnName].src = "images/dot_clear.gif";
}
function clearfield(){
if (document.findform.words.value == "Word or phrase using quotes")
	document.findform.words.value = "";
}

function openhelp(filein)
{
  n1=(screen.width) - 500
	if (filein=="howto.asp?gid=5&fid=21") 
		n1=150;
	ImageWindow = window.open(filein,'howto','toolbar=no,location=no,scrollbars=yes,resizable=yes,menubar=no,width=450,height=430,top=200,left=' + n1)
	ImageWindow.focus()
}

function openwindow(filein,sizew,sizeh)
{
var popupWin = window.open(filein,'WSG',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=" +sizew +",height=" +sizeh +",top=150,left=100");
}

function makeArray() {
     for (i = 0; i<makeArray.arguments.length; i++)
          this[i + 1] = makeArray.arguments[i];
}

