function expand(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);
  td.className = "menuHover";
  d.className = "menuHover";
}

function collapse(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuNormal";
  d.className = "menuNormal";
}

/* Popup Fuction */

function OpenPopStyle(url,width,height)
{
	pgWidth = 0;
	pgHeight = 0;
	
	var url = "PopupImage.html?imgSrc="+url;
	var features = "width="+width+",height="+height+",left="+pgWidth+",top="+pgHeight;
	features += ",screenX="+pgWidth+",screenY="+pgHeight;
	features += ",scrollbars=0,resizable=0,location=0";
	features += ",menubar=0,toolbar=0,status=0";
	window.open(url,'PopupImage',features);
			
}