function colorIt(t)
{
	// #660605  original red mouseover
	t.style.background = '#660605';
	t.style.color = 'White';
	if (document.all)
		t.parentElement.style.background = '#660605';
	else
		t.parentNode.style.background = '#660605';
}
function deColorIt(t) 
{
	t.style.background = "transparent";
	t.style.color = '#660605';
	if (document.all)
		t.parentElement.style.background = 'transparent';
	else
		t.parentNode.style.background = 'transparent';
	
}
var win1 = null;
function showDir()
{   
    var host = "";
    if (arguments.length > 0)
        host = arguments[0];
	if (win1 != null) {if (!win1.closed) {win1.close();win1 = null}}
	win1 = window.open(host+'directions.htm','_blank','top=10,left=10,width=650,height=550,resizable,scrollbars');

}
function closeIt() 
{
	if (win1 != null) {if (!win1.closed) {win1.close();win1 = null}}

}