function openWin(theURL,winName,features)
{
	window.open(theURL,winName,features);
}

function closeWin()
{
	window.close()
}

function fnWinFormat()
{
	window.opener=top;
	window.open("index.html","_blank","height=580,width=780,top=10,left=10,scrollbars=no");
	window.close();
}

function fnMenuChange(menuID,action)
{
	//
	if (action=='in'){
		document.getElementById(menuID).className="basicMenuOver";
		document.getElementById(menuID+"link").className="basicMenuOver";
	}
	else{
		document.getElementById(menuID).className="basicMenu";
		document.getElementById(menuID+"link").className="basicMenu";
	}
	
}

// Feature Examples:
// "toolbar=0,left=50,top=50,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=400,height=600"
// "toolbar=0,left=10,top=0,location=0,status=0,menubar=1,scrollbars=1,resizable=1,width=750,height=480"

