/*Function for the popup image*/
function winpop_pic(address, width, height)
{
   info = window.open(address, 'preview', 'width=' + width + ', height=' + height + ',toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no');
   info.resizeTo(parseInt(width)+50, parseInt(height)+70);
   info.focus();
}

/*Function for drop down menu on main(home) page*/
function drop(anchorid,rollid,style1,style2)
{
    if(document.getElementById(anchorid).className == 'drop')
	{
	  document.getElementById(anchorid).className = 'hidden';
	  document.getElementById(rollid).className = style1; /*leftmenu*/
	}
	else if(document.getElementById(anchorid).className == 'hidden')
	{
	  document.getElementById(anchorid).className = 'drop';
	  document.getElementById(rollid).className = style2; /*leftmenudown*/
	}
	
}

/*Function for left-hand-side rollovers on main(home) page*/
function rollover(id,style1,style2)
{
  if(document.getElementById(id).className != style1) /*leftmenudown*/
  {
    document.getElementById(id).className = style2; /*leftmenuover*/
  }	
}

/*Function for left-hand-side rollouts on main(home) page*/
function rollout(id,style1,style2)
{
  if(document.getElementById(id).className != style1) /*leftmenudown*/
  {
    document.getElementById(id).className = style2; /*leftmenu*/
  }	
}