<!--

function open_window(window_feature)
{
  var window_chrome = window_feature + ",height=630,width=440"
  window.open("claim.php","",window_chrome)
}

function open_window2(window_feature)
{
  var window_chrome = window_feature + ",height=650,width=440"
  window.open("contact.php","",window_chrome)
}

function open_window3(window_feature)
{
  var window_chrome = window_feature + ",height=650,width=440"
  window.open("quote.php","",window_chrome)
}

function open_window4(window_feature)
{
  var window_chrome = window_feature + ",height=650,width=440"
  window.open("paybill.php","",window_chrome)
}

var timeout	= 500;
var closetimer	= 0;
var ddmenuitem	= 0;

function mopen(id)
{	
	mcancelclosetime();

	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';

	ddmenuitem = document.getElementById(id);
	ddmenuitem.style.visibility = 'visible';

}

function mclose()
{
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}

function mclosetime()
{
	closetimer = window.setTimeout(mclose, timeout);
}

function mcancelclosetime()
{
	if(closetimer)
	{
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}

document.onclick = mclose; 

    function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }
	
	
//-->