





function mouse_on(item) 
{


}

function mouse_out(item) { 
}

 function mouse_on1(item,item2) 
{
}


function mouse_out1(item,item2) { 
}

 
function toggleList(idL){  eTarget=idL
  eTarget.style.display == "none" ? eTarget.style.display = "block":
     eTarget.style.display = "none";
  eTarget.display == "none" ? eTarget.display = "block":
     eTarget.display = "none";}

function openWin(a) {
  myWin= open(a, "displayWindow",
    "width=700,height=470,status=no,toolbar=no,menubar=no,scrollbars=yes");
}

function open_window(link,w,h) //opens new window
	{
		var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
		newWin = window.open(link,'newWin',win);
		newWin.focus();
	}




