<!--
function nextSite(sel)
{
	if (sel.selectedIndex==sel.options.length-1) sel.selectedIndex=1;
	else sel.selectedIndex++;
	move(sel);

}

function previousSite(sel)
{
	if (sel.selectedIndex==sel.options.length-1) sel.selectedIndex=1;
	else sel.selectedIndex--;
	move(sel);

}

function move(sel)
{
        top.location=sel.options[sel.selectedIndex].value
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// Use this function to retrieve a cookie.
// -->
