// JavaScript Document

function ChangeSpanText(content)
{
  document.getElementById('country_name').innerHTML = content;
}

function GoToURL(url)
{
    location.href=url;
}

function ChangeMainPic(thumbName, orientation) 
{
    if (orientation == 0) // landscape
	{
	  document.getElementById('mainpic').style.height = 150;
	}
	if (orientation == 1) // portrait
	{
	  document.getElementById('mainpic').style.height = 325;
	}
	document.getElementById('mainpic').src = thumbName.src; 
}
function ChangeCursor(thumbName)
{
  //thumbName.style.cursor = "pointer";
  document.getElementById(thumbName).style.cursor = "pointer";
}
