/*Country Selector Dropdown*/
var doit = true
function showm(ob,pict) {
  if(doit) {
    document.getElementById(ob).style.height = '100%'
    document.getElementById(pict).src = '/artwork/vs/arrowl.gif'
    doit = false
  } else {
    document.getElementById(ob).style.height = '20'
    document.getElementById(pict).src = '/artwork/vs/arrowd.gif'
    doit = true
  }
}

function takemeto(here) {
	window.location = here;
}

