function fdpopup(dtype)
{
var width = screen.availWidth - 14;
var height = screen.availHeight - 130;
var options = "width=" + width + ",height=" + height + ",toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes";

windowName = window.open("fdpopup.cfm?dtype=" + dtype,'FileDownLoadWindow', options);
}

function flpopup(dtype)
{
var width = screen.availWidth - 14;
var height = screen.availHeight - 130;
var options = "width=" + width + ",height=" + height + ",toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes";

windowName = window.open("flpopup.cfm?dtype=" + dtype,'FileLayoutWindow', options);
}

function ddpopup(dtype)
{
var width = screen.availWidth - 14;
var height = screen.availHeight - 130;


var options = ",toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes";

windowName = window.open("http://www.mcohio.org/revize/montgomery/government/treasurer/realestate/due_dates.html",'Duedate Window', options);
}

function SetFocus()
{
windowName.focus();
}

function showMe(item, mode) {

       if (document.getElementById) var syntax = document.getElementById(item).style;
  else if (document.all)            var syntax = document.all.item.style;
  else if (document.layers)         var syntax = document.item;


if (mode == "on")  syntax.backgroundColor = "#FFFFFF";

if (mode == "off")  syntax.backgroundColor = "";


}

