function chgBg(obj,color)
{   
   if (document.all || document.getElementById)
   {
     obj.style.backgroundColor=color;
   } 
}

function chgImg(imgField, newImg)
{
   if(document.images)
   {
      document[imgField].src = eval(newImg + ".src");
   }
}

function PopWindow(winType,id)
{
	if(winType == "map")
		actionURL = "sitemap.php?id=" + id;
	else if(winType == "search")
		actionURL = "sitesearch.php";

	window.open(actionURL, 'sitemap', 'toolbar=no, directories=no, location=no, status=yes, menubar=no, resizable=yes, scrollbars=yes, width=400, height=500'); 
}

function mapMove(url)
{
	window.location = url;
}
