function goTo (page) 
{
	if (page != "" ) 
	{
		document.location.href = page;	
	}
	
	return false;
}

function viewimage(myimage,mytopic)
{
	url= myimage;

	var _params = "width=700,height=700,margin-top=0,margin-left=0,resizable=yes,status=no,scrollbars=yes,top=244,left=426";
	newWindow= window.open(url, "media", _params);
	newWindow.document.write("<html><head><title>Michigan Medical Report | "+mytopic+"<\/title><\/head><body topmargin=\"0\" leftmargin=\"0\"><img src=\""+url+"\"><\/body><\/html>");
}

function display(elementId,display) 
{
	var elem = document.getElementById(elementId);
	if(display.toLowerCase() == "true")
	{
		if(elem.style.display == "none")
			elem.style.display = "block";
		
	}
	else if(display.toLowerCase() == "false")
	{
		elem.style.display = "none";
	}
}


function direction_popup()
	{
	url= "http://www.netreturns.biz/mapping/routepage.aspx?Destination=44405+Woodward+Ave,Pontiac,MI,48341,United+States"
	var _params = "width=510,height=600,margin-top=0,margin-left=0,resizable=yes,status=no,scrollbars=yes,top=244,left=426";
	newWindow= window.open(url, "media", _params);
	}

function changeClass(elementId, valueToCompare, targetValue, cssClass)
{
	var element = document.getElementById(elementId);
	
	if(element != null) 
	{
		if(valueToCompare == targetValue) 
		{
			/* element.setAttribute("class", cssClass); */
			element.className = cssClass;
		}
	}
}