function openLink(target)
{
	var target = target;
	
	switch(target)
	{
		case "download":
			var url="http://www.madcraft.net/download";
			break;
			
		case "purchase":
			var url="http://www.madcraft.net/purchase";
			break;
		
		case "facebook":
			var url = "http://www.facebook.com/#!/pages/MadCraft/198425773800?ref=ts";
			break;
			
		case "twitter":
			var url = "http://www.twitter.com/WorldOfMadCraft";
			break;
			
		case "myspace":
			var url = "http://www.myspace.com/WorldOfMadCraft";
			break;
		
		case "youtube":
			var url = "http://www.youtube.com/user/MadCraftOfficial";
			break;
			
		case "galleria":
			var url = "http://irc-galleria.net/user/MadCraft";
			break;
			
		case "shirt":
			var url = "http://spreadsheets.google.com/viewform?formkey=dDBhOVVxZ3Y4a0JBazRSbHZOWEFOUGc6MQ";
			break;
			
		case "press":
			var url = "http://madcraft.net/press";
			break;
	}
	
	window.open(url,"_blank");
}

function showIt(target)
{
	var target = target;

	document.getElementById(target).style.opacity = 1;
}

function hideIt(target)
{
	var target = target;

	document.getElementById(target).style.opacity = 0;
}

function showGlow(target)
{
	var target = target;

	document.getElementById(target).style.opacity = 0.8;
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById(target).style.opacity = 0.8 + (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById(target).style.opacity = 1;
				window.clearInterval(fadeIn);
			}
		}
		, 30
	)
}

function hideGlow(target)
{
	var target = target;

	document.getElementById(target).style.opacity = 1;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById(target).style.opacity = 1 - (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById(target).style.opacity = 0.8;
				window.clearInterval(fadeOut);
			}
		}
		, 25
	)
}

function hoverSpotify()
{
	document.getElementById("spotify").style.opacity = 0.8;
	var top = 885;
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("spotify").style.opacity = 0.8 + (actStep*0.05);
			document.getElementById("spotify").style.top = (top+1)+'px';
			top++;
			actStep++;
			if (actStep > 4) {
				document.getElementById("spotify").style.opacity = 1;
				document.getElementById("spotify").style.top = 889+'px';
				window.clearInterval(fadeIn);
			}
		}
		, 30
	)
}

function unhoverSpotify()
{
	document.getElementById("spotify").style.opacity = 1;
	var top = 889;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("spotify").style.opacity = 1 - (actStep*0.05);
			document.getElementById("spotify").style.top = (top-1)+'px';
			top--;
			actStep++;
			if (actStep > 4) {
				document.getElementById("spotify").style.opacity = 0.8;
				document.getElementById("spotify").style.top = 885+'px';
				window.clearInterval(fadeOut);
			}
		}
		, 25
	)
}

function hoverMerchshop()
{
	document.getElementById("merchshop").style.opacity = 0.8;
	var top = 885;
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("merchshop").style.opacity = 0.8 + (actStep*0.05);
			document.getElementById("merchshop").style.top = (top+1)+'px';
			top++;
			actStep++;
			if (actStep > 4) {
				document.getElementById("merchshop").style.opacity = 1;
				document.getElementById("merchshop").style.top = 889+'px';
				window.clearInterval(fadeIn);
			}
		}
		, 30
	)
}

function unhoverMerchshop()
{
	document.getElementById("merchshop").style.opacity = 1;
	var top = 889;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("merchshop").style.opacity = 1 - (actStep*0.05);
			document.getElementById("merchshop").style.top = (top-1)+'px';
			top--;
			actStep++;
			if (actStep > 4) {
				document.getElementById("merchshop").style.opacity = 0.8;
				document.getElementById("merchshop").style.top = 885+'px';
				window.clearInterval(fadeOut);
			}
		}
		, 25
	)
}

function hoverPurchase2()
{
	document.getElementById("purchase2").style.opacity = 0.8;
	var top = 885;
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("purchase2").style.opacity = 0.8 + (actStep*0.05);
			document.getElementById("purchase2").style.top = (top+1)+'px';
			top++;
			actStep++;
			if (actStep > 4) {
				document.getElementById("purchase2").style.opacity = 1;
				document.getElementById("purchase2").style.top = 889+'px';
				window.clearInterval(fadeIn);
			}
		}
		, 30
	)
}

function unhoverPurchase2()
{
	document.getElementById("purchase2").style.opacity = 1;
	var top = 889;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("purchase2").style.opacity = 1 - (actStep*0.05);
			document.getElementById("purchase2").style.top = (top-1)+'px';
			top--;
			actStep++;
			if (actStep > 4) {
				document.getElementById("purchase2").style.opacity = 0.8;
				document.getElementById("purchase2").style.top = 885+'px';
				window.clearInterval(fadeOut);
			}
		}
		, 25
	)
}

function hoverSpreadshirt()
{
	document.getElementById("spreadshirtHover").style.opacity = 0;
	document.getElementById("spreadshirtHover").style.visibility = "visible";
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("spreadshirtHover").style.opacity = 0 + (actStep*0.1);
			actStep++;
			if (actStep > 10) {
				document.getElementById("spreadshirtHover").style.opacity = 1;
				window.clearInterval(fadeIn);
			}
		}
		, 25
	)
}

function unhoverSpreadshirt()
{
	document.getElementById("spreadshirtHover").style.opacity = 1;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("spreadshirtHover").style.opacity = 1 - (actStep*0.1);
			actStep++;
			if (actStep > 10) {
				document.getElementById("spreadshirtHover").style.opacity = 0;
				document.getElementById("spreadshirtHover").style.visibility = "hidden";
				window.clearInterval(fadeOut);
			}
		}
		, 15
	)
}

function hoverLovelock()
{
	document.getElementById("lovelock").style.opacity = 0.8;
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("lovelock").style.opacity = 0.8 + (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById("lovelock").style.opacity = 1;
				window.clearInterval(fadeIn);
			}
		}
		, 50
	)
}

function unhoverLovelock()
{
	document.getElementById("lovelock").style.opacity = 1;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("lovelock").style.opacity = 1 - (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById("lovelock").style.opacity = 0.8;
				window.clearInterval(fadeOut);
			}
		}
		, 35
	)
}

function hoverContact()
{
	document.getElementById("contactBooking").style.opacity = 0.8;
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("contactBooking").style.opacity = 0.8 + (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById("contactBooking").style.opacity = 1;
				window.clearInterval(fadeIn);
			}
		}
		, 30
	)
	
}

function unhoverContact()
{
	document.getElementById("contactBooking").style.opacity = 1;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("contactBooking").style.opacity = 1 - (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById("contactBooking").style.opacity = 0.8;
				window.clearInterval(fadeOut);
			}
		}
		, 25
	)
}

function hoverPress()
{
	document.getElementById("pressInfo").style.opacity = 0.8;
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("pressInfo").style.opacity = 0.8 + (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById("pressInfo").style.opacity = 1;
				window.clearInterval(fadeIn);
			}
		}
		, 30
	)
	
}

function unhoverPress()
{
	document.getElementById("pressInfo").style.opacity = 1;
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("pressInfo").style.opacity = 1 - (actStep*0.05);
			actStep++;
			if (actStep > 4) {
				document.getElementById("pressInfo").style.opacity = 0.8;
				window.clearInterval(fadeOut);
			}
		}
		, 25
	)
}


function select_all_sc()
{
var text_val=eval("document.scform.scarea");
text_val.focus();
text_val.select();
}

function select_all_yt()
{
var text_val=eval("document.ytform.ytarea");
text_val.focus();
text_val.select();
}

function showMemberInfo(member)
{
	document.getElementById("memberInfo"+member).style.opacity = 0;
	document.getElementById("memberInfoText"+member).style.opacity = 0;
	document.getElementById("memberInfo"+member).style.visibility = "visible";
	document.getElementById("memberInfoText"+member).style.visibility = "visible";
	
	if (fadeIn) window.clearInterval(fadeIn);
	var actStep = 0;
	var fadeIn = window.setInterval(
		function(){
			document.getElementById("memberInfo"+member).style.opacity = 0.8*0.1*actStep;
			document.getElementById("memberInfoText"+member).style.opacity = 0.1*actStep;
			actStep++;
			if (actStep > 10) window.clearInterval(fadeIn);
		}
		, 15
	)
	
	hideGlow('download');
	
}

function hideMemberInfo(member)
{
	document.getElementById("memberInfo"+member).style.opacity = 0.8;
	document.getElementById("memberInfoText"+member).style.opacity = 1;
	
	if (fadeOut) window.clearInterval(fadeOut);
	var actStep = 0;
	var fadeOut = window.setInterval(
		function(){
			document.getElementById("memberInfo"+member).style.opacity = 0.8*0.1*(10-actStep);
			document.getElementById("memberInfoText"+member).style.opacity = 0.1*(10-actStep);
			actStep++;
			if (actStep > 10) {
				document.getElementById("memberInfo"+member).style.visibility = "hidden";
				document.getElementById("memberInfoText"+member).style.visibility = "hidden";
				window.clearInterval(fadeOut);
			}
		}
		, 15
	)
}

function hoverUpcomingGigs()
{
	document.getElementById("gigsUpcoming").style.visibility = "hidden";
	document.getElementById("gigsUpcomingHover").style.visibility = "visible";
	document.getElementById("gigsUpcomingSelected").style.visibility = "hidden";
}

function unhoverUpcomingGigs()
{
	document.getElementById("gigsUpcoming").style.visibility = "visible";
	document.getElementById("gigsUpcomingHover").style.visibility = "hidden";
	document.getElementById("gigsUpcomingSelected").style.visibility = "hidden";
}

function unhoverSelectedUpcomingGigs()
{
	document.getElementById("gigsUpcomingSelected").style.visibility = "visible";
	document.getElementById("gigsPast").style.visibility = "visible";
	document.getElementById("gigsUpcoming").style.visibility = "hidden";
	document.getElementById("gigsUpcomingHover").style.visibility = "hidden";
	document.getElementById("gigsPastHover").style.visibility = "hidden";
	document.getElementById("gigsPastSelected").style.visibility = "hidden";
}

function selectUpcomingGigs()
{
	document.getElementById("gigsUpcomingSelected").style.visibility = "visible";
	document.getElementById("gigsPast").style.visibility = "visible";
	document.getElementById("gigsUpcoming").style.visibility = "hidden";
	document.getElementById("gigsUpcomingHover").style.visibility = "hidden";
	document.getElementById("gigsPastHover").style.visibility = "hidden";
	document.getElementById("gigsPastSelected").style.visibility = "hidden";
	
}

function hoverPastGigs()
{
	document.getElementById("gigsPast").style.visibility = "hidden";
	document.getElementById("gigsPastHover").style.visibility = "visible";
	document.getElementById("gigsPastSelected").style.visibility = "hidden";
}

function unhoverPastGigs()
{
	document.getElementById("gigsPast").style.visibility = "visible";
	document.getElementById("gigsPastHover").style.visibility = "hidden";
	document.getElementById("gigsPastSelected").style.visibility = "hidden";
}

function unhoverSelectedPastGigs()
{
	document.getElementById("gigsPastSelected").style.visibility = "visible";
	document.getElementById("gigsUpcoming").style.visibility = "visible";
	document.getElementById("gigsPast").style.visibility = "hidden";
	document.getElementById("gigsPastHover").style.visibility = "hidden";
	document.getElementById("gigsUpcomingHover").style.visibility = "hidden";
	document.getElementById("gigsUpcomingSelected").style.visibility = "hidden";
}

function hoverPastGigsShowOnMap()
{
	document.getElementById("gigsPastShowOnMapHover").style.visibility = "visible";
	document.getElementById("gigsPastShowOnMap").style.visibility = "hidden";
}

function unhoverPastGigsShowOnMap()
{
	document.getElementById("gigsPastShowOnMap").style.visibility = "visible";
	document.getElementById("gigsPastShowOnMapHover").style.visibility = "hidden";
}

function showMap()
{
	document.getElementById("mapsContainer").style.visibility = "visible";
	document.getElementById("mapsBackground").style.visibility = "visible";
	document.getElementById("mapFrameContainer").style.visibility = "visible";
	document.getElementById("closeMapContainer").style.visibility = "visible";
	var sisalto = document.getElementById("map_canvas").innerHTML;
	//alert(sisalto);
	if (sisalto == "") {
		gmapsInitialize()
	};
}

function hideMap()
{
	document.getElementById("mapsContainer").style.visibility = "hidden";
	document.getElementById("mapsBackground").style.visibility = "hidden";
	document.getElementById("mapFrameContainer").style.visibility = "hidden";
	document.getElementById("closeMapContainer").style.visibility = "hidden";
}

function selectPastGigs()
{
	document.getElementById("gigsPastSelected").style.visibility = "visible";
	document.getElementById("gigsUpcoming").style.visibility = "visible";
	document.getElementById("gigsPast").style.visibility = "hidden";
	document.getElementById("gigsPastHover").style.visibility = "hidden";
	document.getElementById("gigsUpcomingHover").style.visibility = "hidden";
	document.getElementById("gigsUpcomingSelected").style.visibility = "hidden";
}

function showPastGigs()
{
	//selectPastGigs();
	document.getElementById("gigsPastHover").style.visibility = "hidden";
	document.getElementById("gigsPastSelected").style.visibility = "visible";
	document.getElementById("gigsPast").style.visibility = "hidden";
	document.getElementById("gigsUpcomingHover").style.visibility = "hidden";
	document.getElementById("gigsUpcomingSelected").style.visibility = "hidden";
	document.getElementById("gigsUpcoming").style.visibility = "visible";
	document.getElementById("gigsPastShowOnMap").style.visibility = "visible";
	
	document.getElementById("pastGigs").style.opacity = 0;
	document.getElementById("pastGigs").style.visibility = "visible";
	if (crossFade) window.clearInterval(crossFade);
	var actStep = 0;
	var crossFade = window.setInterval(
		function(){
			document.getElementById("pastGigs").style.opacity = 0.1*(actStep);
			document.getElementById("upcomingGigs").style.opacity = 0.1*(10-actStep);
			document.getElementById("gigsPastShowOnMap").style.opacity = 0.1*0.8*(actStep);
			actStep++;
			if (actStep > 10) window.clearInterval(crossFade);
		}
		, 25
	)
	document.getElementById("upcomingGigs").style.visibility = "hidden";
}

function showUpcomingGigs()
{
	//selectUpcomingGigs();
	document.getElementById("gigsUpcomingHover").style.visibility = "hidden";
	document.getElementById("gigsUpcomingSelected").style.visibility = "visible";
	document.getElementById("gigsUpcoming").style.visibility = "hidden";
	document.getElementById("gigsPastHover").style.visibility = "hidden";
	document.getElementById("gigsPastSelected").style.visibility = "hidden";
	document.getElementById("gigsPast").style.visibility = "visible";
	
	document.getElementById("upcomingGigs").style.opacity = 0;
	document.getElementById("upcomingGigs").style.visibility = "visible";
	if (crossFade) window.clearInterval(crossFade);
	var actStep = 0;
	var crossFade = window.setInterval(
		function(){
			document.getElementById("upcomingGigs").style.opacity = 0.1*(actStep);
			document.getElementById("pastGigs").style.opacity = 0.1*(10-actStep);
			document.getElementById("gigsPastShowOnMap").style.opacity = 0.1*0.8*(10-actStep);
			actStep++;
			if (actStep > 10) window.clearInterval(crossFade);
		}
		, 25
	)
	document.getElementById("pastGigs").style.visibility = "hidden";
	document.getElementById("gigsPastShowOnMap").style.visibility = "hidden";
}

//// GOOGLE MAPS

function gmapsInitialize() {
    var latlng = new google.maps.LatLng(61.5, 21.0);
    var myOptions = {
      zoom: 5,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),
        myOptions);
	
	
	//Black Sheep, Stockholm
	var contentString1 = '<div id="gmapsInfoBlackSheep" class="gmapsInfo">'+
    '<h3>Black Sheep</h3>'+
	'20.11.2010 w/ 8 other bands'+
    '</div>';

	var infowindow1 = new google.maps.InfoWindow({
	    content: contentString1
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(59.3513498, 17.9933267);
  	var marker1 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Black Sheep, Stockholm"
  	});
	
	google.maps.event.addListener(marker1, 'click', function() {
	  infowindow1.open(map,marker1);
	});
	
	
	
	//Arabian Nuta, Helsinki
	var contentString2 = '<div id="gmapsInfoArabia" class="gmapsInfo">'+
    '<h3>Arabian Nuorisotalo</h3>'+
	'10.11.2010 w/ Santa Cruz, Hey Heather, others'+
    '</div>';

	var infowindow2 = new google.maps.InfoWindow({
	    content: contentString2
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.2058124, 24.9754769);
  	var marker2 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Arabian Nuorisotalo, Helsinki"
  	});
	
	google.maps.event.addListener(marker2, 'click', function() {
	  infowindow2.open(map,marker2);
	});
	
	
	//Liberte, Helsinki
	var contentString3 = '<div id="gmapsInfoLiberte" class="gmapsInfo">'+
    '<h3>Club Liberte</h3>'+
	'24.8.2011 w/ Fudge Flounders, Desert Lord<br/>'+
	'20.8.2011 Private Party<br/>'+
	'20.1.2011 w/ Circus At Dawn, Resovolt<br/>'+
	'9.11.2010 w/ The Knob, Circus At Dawn'+
    '</div>';

	var infowindow3 = new google.maps.InfoWindow({
	    content: contentString3
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.1849229, 24.9430003);
  	var marker3 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Club Liberte, Helsinki"
  	});
	
	google.maps.event.addListener(marker3, 'click', function() {
	  infowindow3.open(map,marker3);
	});
	
	
	//Helsinki Club, Helsinki
	var contentString4 = '<div id="gmapsInfoHelsinkiClub" class="gmapsInfo">'+
    '<h3>Helsinki Club</h3>'+
	'2.11.2010 w/ 42 Degrees'+
    '</div>';

	var infowindow4 = new google.maps.InfoWindow({
	    content: contentString4
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.1697690, 24.9465758);
  	var marker4 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Helsinki Club, Helsinki"
  	});
	
	google.maps.event.addListener(marker4, 'click', function() {
	  infowindow4.open(map,marker4);
	});
	
	
	//Smkki, Espoo
	var contentString5 = '<div id="gmapsInfoSmokki" class="gmapsInfo">'+
    '<h3>Sm&ouml;kki</h3>'+
	'29.4.2011 w/ Notkea Rotta, Knucklebone Oscar<br/>'+
	'16.9.2010 w/ 42 Degrees<br/>'+
	'29.4.2010 w/ others<br/>'+
	'2.12.2009 w/ others<br/>'+
    '</div>';

	var infowindow5 = new google.maps.InfoWindow({
	    content: contentString5
	});
	
	var image = 'MCicon.png';
  	var myLatLng = new google.maps.LatLng(60.1878342, 24.8368686);
  	var marker5 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Smokki, Espoo"
  	});
	
	google.maps.event.addListener(marker5, 'click', function() {
	  infowindow5.open(map,marker5);
	});
	
	
	//Lepakkomies, Helsinki
	var contentString6 = '<div id="gmapsInfoLepakkomies" class="gmapsInfo">'+
    '<h3>Lepakkomies</h3>'+
	'22.6.2011 w/ Damage Limit, Brown Harrison<br/>'+
	'7.4.2011 w/ Fudge Flounders, Tragic Gunns<br/>'+
	'27.1.2011 w/ One Hidden Frame, Blossom Hill<br/>'+
	'17.6.2010 w/ Micko Hell & The MFs, The Booby Prize<br/>'+
	'15.1.2010 w/ Yes Please!, Napoleon Says<br/>'+
    '</div>';

	var infowindow6 = new google.maps.InfoWindow({
	    content: contentString6
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.1877281, 24.9597728);
  	var marker6 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Lepakkomies, Helsinki"
  	});
	
	google.maps.event.addListener(marker6, 'click', function() {
	  infowindow6.open(map,marker6);
	});
	
	
	//Club Oranssi, Helsinki
	var contentString7 = '<div id="gmapsInfoOranssi" class="gmapsInfo">'+
    '<h3>Club Oranssi</h3>'+
	'6.3.2010 w/ Disquiet Animus, Cause Of Death'+
    '</div>';

	var infowindow7 = new google.maps.InfoWindow({
	    content: contentString7
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.1863490, 24.9766648);
  	var marker7 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Oranssi, Helsinki"
  	});
	
	google.maps.event.addListener(marker7, 'click', function() {
	  infowindow7.open(map,marker7);
	});
	
	//Darkside Club, Helsinki
	var contentString8 = '<div id="gmapsInfoDarkside" class="gmapsInfo">'+
    '<h3>Darkside Club</h3>'+
	'1.1.2011 w/ Damage Limit, Whatever She Wants'+
    '</div>';

	var infowindow8 = new google.maps.InfoWindow({
	    content: contentString8
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.1705017, 24.9231691);
  	var marker8 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Oranssi, Helsinki"
  	});
	
	google.maps.event.addListener(marker8, 'click', function() {
	  infowindow8.open(map,marker8);
	});
	
	//Nuorisotalo Silta, Helsinki
	var contentString9 = '<div id="gmapsInfoSilta" class="gmapsInfo">'+
    '<h3>Nuorisotalo Silta</h3>'+
	'3.2.2012 Acoustic<br/>'+
	'5.2.2011'+
    '</div>';

	var infowindow9 = new google.maps.InfoWindow({
	    content: contentString9
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.631749, 24.853284);
  	var marker9 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Nuorisotalo Silta, Hyvink&auml;&auml;"
  	});
	
	google.maps.event.addListener(marker9, 'click', function() {
	  infowindow9.open(map,marker9);
	});
	
	//Happi, Helsinki
	var contentString10 = '<div id="gmapsInfoHappi" class="gmapsInfo">'+
    '<h3>Toimintakeskus Happi</h3>'+
	'18.2.2011 w/ Dawn'+
    '</div>';

	var infowindow10 = new google.maps.InfoWindow({
	    content: contentString10
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.1875581, 24.9694826);
  	var marker10 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Toimintakeskus Happi, Helsinki"
  	});
	
	google.maps.event.addListener(marker10, 'click', function() {
	  infowindow10.open(map,marker10);
	});
	
	//Henry's Pub, Helsinki
	var contentString11 = '<div id="gmapsInfoHenkka" class="gmapsInfo">'+
    '<h3>Henry\'s Pub</h3>'+
	'3.3.2011 w/ Miss Monster Truck'+
    '</div>';

	var infowindow11 = new google.maps.InfoWindow({
	    content: contentString11
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.169828, 24.935719);
  	var marker11 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Henry's Pub, Helsinki"
  	});
	
	google.maps.event.addListener(marker11, 'click', function() {
	  infowindow11.open(map,marker11);
	});
	
	//Oulunkyln Nuorisotalo, Helsinki
	var contentString12 = '<div id="gmapsInfoOgeli" class="gmapsInfo">'+
    '<h3>Oulunkyl&auml;n Nuorisotalo</h3>'+
	'4.3.2011 w/ Santa Cruz, Artificial Heart'+
    '</div>';

	var infowindow12 = new google.maps.InfoWindow({
	    content: contentString12
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.227667, 24.962815);
  	var marker12 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Oulunkylan Nuorisotalo, Helsinki"
  	});
	
	google.maps.event.addListener(marker12, 'click', function() {
	  infowindow12.open(map,marker12);
	});
	
	//Pakilan Nuorisotalo, Helsinki
	var contentString13 = '<div id="gmapsInfoPakila" class="gmapsInfo">'+
    '<h3>Pakilan Nuorisotalo</h3>'+
	'8.4.2011 w/ Rockama, Suhteettomuusteoria'+
    '</div>';

	var infowindow13 = new google.maps.InfoWindow({
	    content: contentString13
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.2404860, 24.9407585);
  	var marker13 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Pakilan Nuorisotalo, Helsinki"
  	});
	
	google.maps.event.addListener(marker13, 'click', function() {
	  infowindow13.open(map,marker13);
	});
	
	//Kannelmen Nuorisotalo, Helsinki
	var contentString14 = '<div id="gmapsInfoKantsu" class="gmapsInfo">'+
    '<h3>Kannelm&auml;en Nuorisotalo</h3>'+
	'9.4.2011 w/ Pasa, Bullethead'+
    '</div>';

	var infowindow14 = new google.maps.InfoWindow({
	    content: contentString14
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.2385599, 24.8759260);
  	var marker14 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Kannelmaen Nuorisotalo, Helsinki"
  	});
	
	google.maps.event.addListener(marker14, 'click', function() {
	  infowindow14.open(map,marker14);
	});
	
	//Kohti Kes, Hamina
	var contentString15 = '<div id="gmapsInfoHamina" class="gmapsInfo">'+
    '<h3>Kohti Kes&auml;&auml;</h3>'+
	'16.4.2011 w/ none'+
    '</div>';

	var infowindow15 = new google.maps.InfoWindow({
	    content: contentString15
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.562257, 27.181292);
  	var marker15 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Kohti Kesaa, Hamina"
  	});
	
	google.maps.event.addListener(marker15, 'click', function() {
	  infowindow15.open(map,marker15);
	});
	
	//Laidunkausi, Helsinki
	var contentString16 = '<div id="gmapsInfoLaidunkausi" class="gmapsInfo">'+
    '<h3>Laidunkauden Avajaiset</h3>'+
	'20.4.2011 w/ none'+
    '</div>';

	var infowindow16 = new google.maps.InfoWindow({
	    content: contentString16
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.22447, 25.035095);
  	var marker16 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Laidunkauden Avajaiset, Helsinki"
  	});
	
	google.maps.event.addListener(marker16, 'click', function() {
	  infowindow16.open(map,marker16);
	});
	
	//Hmis, Helsinki
	var contentString17 = '<div id="gmapsInfoHamis" class="gmapsInfo">'+
    '<h3>H&auml;miksen Vappu</h3>'+
	'30.4.2011 w/ The Under the Influences, Keytoes'+
    '</div>';

	var infowindow17 = new google.maps.InfoWindow({
	    content: contentString17
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.16866, 24.933032);
  	var marker17 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Hamiksen Vappu, Helsinki"
  	});
	
	google.maps.event.addListener(marker17, 'click', function() {
	  infowindow17.open(map,marker17);
	});
	
	//Vomala Rock, Riihimki
	var contentString18 = '<div id="gmapsInfoVoimala" class="gmapsInfo">'+
    '<h3>Voimala Rock</h3>'+
	'6.5.2011 w/ Dictionary Bob, Guild Of Passion, Hackart Hill'+
    '</div>';

	var infowindow18 = new google.maps.InfoWindow({
	    content: contentString18
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.734319, 24.77947);
  	var marker18 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Voimala Rock, Riihimaki"
  	});
	
	google.maps.event.addListener(marker18, 'click', function() {
	  infowindow18.open(map,marker18);
	});
	
	//Klubi, Turku
	var contentString19 = '<div id="gmapsInfoKlubi" class="gmapsInfo">'+
    '<h3>Klubi</h3>'+
	'10.5.2011 w/ Missed The Point, Modern Day Citizen'+
    '</div>';

	var infowindow19 = new google.maps.InfoWindow({
	    content: contentString19
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.450679, 22.258945);
  	var marker19 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Klubi, Turku"
  	});
	
	google.maps.event.addListener(marker19, 'click', function() {
	  infowindow19.open(map,marker19);
	});
	
	//Sun Dance Day, Hyvink
	var contentString20 = '<div id="gmapsInfoSunDance" class="gmapsInfo">'+
	'<h3>Sun Dance Day</h3>'+
	'27.5.2011 w/ Paleface, Pyh&auml;t Tepot'+
    '</div>';

	var infowindow20 = new google.maps.InfoWindow({
	    content: contentString20
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.630691, 24.832878);
  	var marker20 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Sun Dance Day, Hyvinkaa"
  	});
	
	google.maps.event.addListener(marker20, 'click', function() {
	  infowindow20.open(map,marker20);
	});
	
	//Konttiaukio, Hyvink
	var contentString21 = '<div id="gmapsInfoKonttiaukio" class="gmapsInfo">'+
	'<h3>Konttiaukio</h3>'+
	'27.5.2011 w/ Lame Duck, Blossom Hill'+
    '</div>';

	var infowindow21 = new google.maps.InfoWindow({
	    content: contentString21
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.186748, 24.973598);
  	var marker21 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Konttiaukio, Helsinki"
  	});
	
	google.maps.event.addListener(marker21, 'click', function() {
	  infowindow21.open(map,marker21);
	});
	
	//Rock Bar Zoom, Hyvink
	var contentString22 = '<div id="gmapsInfoZoom" class="gmapsInfo">'+
	'<h3>Zoom</h3>'+
	'28.5.2011 w/ Floaded'+
    '</div>';

	var infowindow22 = new google.maps.InfoWindow({
	    content: contentString22
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.629912, 24.85867);
  	var marker22 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Rock Bar Zoom, Hyvinkaa"
  	});
	
	google.maps.event.addListener(marker22, 'click', function() {
	  infowindow22.open(map,marker22);
	});
	
	//Bar Bkkri, Helsinki
	var contentString23 = '<div id="gmapsInfoBakkari" class="gmapsInfo">'+
	'<h3>Bar B&auml;kk&auml;ri</h3>'+
	'11.12.2011 <i>Acoustic</i><br/>'+
	'3.12.2011 <i>Acoustic</i><br/>'+
	'30.10.2011 <i>Acoustic</i><br/>'+
	'21.10.2011 w/ Holik<br/>'+
	'30.7.2011 w/ Artificial Heart, Bat Attack<br/>'+
	'6.7.2011 w/ Hero Dishonest<br/>'+
	'1.6.2011 w/ Strong Addiction, 24sanctions'+
    '</div>';

	var infowindow23 = new google.maps.InfoWindow({
	    content: contentString23
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.170045, 24.92807);
  	var marker23 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Bar Bakkari, Helsinki"
  	});
	
	google.maps.event.addListener(marker23, 'click', function() {
	  infowindow23.open(map,marker23);
	});
	
	//Puskarock, Helsinki
	var contentString24 = '<div id="gmapsInfoPuskarock" class="gmapsInfo">'+
	'<h3>Pihlajam&auml;en Nuorisopuisto</h3>'+
	'10.8.2011 w/ Santa Cruz, Caroline, Dawn<br/>'+
	'6.7.2011 w/ Others<br/>'+
	'8.6.2011 w/ Exitium, Block Buster, B.A.D.'+
    '</div>';

	var infowindow24 = new google.maps.InfoWindow({
	    content: contentString24
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.237191,24.99763);
  	var marker24 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Pihlajamaen Nuorisopuisto, Helsinki"
  	});
	
	google.maps.event.addListener(marker24, 'click', function() {
	  infowindow24.open(map,marker24);
	});
	
	//Vastavirta, Tampere
	var contentString25 = '<div id="gmapsInfoVastavirta" class="gmapsInfo">'+
	'<h3>Vastavirta-Klubi</h3>'+
	'23.6.2011 w/ Nautilus, Kina, Cockroach Killers'+
    '</div>';

	var infowindow25 = new google.maps.InfoWindow({
	    content: contentString25
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(61.50458,23.711929);
  	var marker25 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Vastavirta-Klubi, Tampere"
  	});
	
	google.maps.event.addListener(marker25, 'click', function() {
	  infowindow25.open(map,marker25);
	});
	
	//On The Rocks, Helsinki
	var contentString26 = '<div id="gmapsInfoOntherocks" class="gmapsInfo">'+
	'<h3>On The Rocks</h3>'+
	'30.6.2011 w/ Hybrid Children'+
    '</div>';

	var infowindow26 = new google.maps.InfoWindow({
	    content: contentString26
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.171286,24.945574);
  	var marker26 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"On The Rocks, Helsinki"
  	});
	
	google.maps.event.addListener(marker26, 'click', function() {
	  infowindow26.open(map,marker26);
	});
	
	//Rnkirock, Alajrvi
	var contentString27 = '<div id="gmapsInfoRankirock" class="gmapsInfo">'+
	'<h3>R&auml;nkirock</h3>'+
	'2.7.2011 w/ 9 other bands'+
    '</div>';

	var infowindow27 = new google.maps.InfoWindow({
	    content: contentString27
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(62.784947,24.013238);
  	var marker27 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Rankirock, Alajarvi"
  	});
	
	google.maps.event.addListener(marker27, 'click', function() {
	  infowindow27.open(map,marker27);
	});
	
	//Torvi, Lahti
	var contentString28 = '<div id="gmapsInfoTorvi" class="gmapsInfo">'+
	'<h3>Torvi</h3>'+
	'20.7.2011 w/ Fudge Flounders'+
    '</div>';

	var infowindow28 = new google.maps.InfoWindow({
	    content: contentString28
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.978708,25.658312);
  	var marker28 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Torvi, Lahti"
  	});
	
	google.maps.event.addListener(marker28, 'click', function() {
	  infowindow28.open(map,marker28);
	});
	
	//Kodu Baar, Tallinna
	var contentString29 = '<div id="gmapsInfoKoduBaar" class="gmapsInfo">'+
	'<h3>Kodu Baar</h3>'+
	'29.7.2011 w/ Lame Duck, Hidden Lane'+
    '</div>';
	
	var infowindow29 = new google.maps.InfoWindow({
	    content: contentString29
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(59.440068,24.746168);
  	var marker29 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Kodu Baar, Tallinn"
  	});
	
	google.maps.event.addListener(marker29, 'click', function() {
	  infowindow29.open(map,marker29);
	});
	
	//GROOM Rock, Helsinki
	var contentString30 = '<div id="gmapsInfoGroomRock" class="gmapsInfo">'+
	'<h3>Groom Rock</h3>'+
	'5.8.2011 Acoustic'+
    '</div>';
	
	var infowindow30 = new google.maps.InfoWindow({
	    content: contentString30
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.166322,24.929867);
  	var marker30 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Groom Rock, Helsinki"
  	});
	
	google.maps.event.addListener(marker30, 'click', function() {
	  infowindow30.open(map,marker30);
	});
	
	//Auki0, Lohja
	var contentString31 = '<div id="gmapsInfoAukio" class="gmapsInfo">'+
	'<h3>Auki0, Lohja</h3>'+
	'13.8.2011 w/ Mario3'+
    '</div>';
	
	var infowindow31 = new google.maps.InfoWindow({
	    content: contentString31
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.251131,24.066131);
  	var marker31 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Auki0, Lohja"
  	});
	
	google.maps.event.addListener(marker31, 'click', function() {
	  infowindow31.open(map,marker31);
	});
	
	//PRKL Club, Helsinki
	var contentString32 = '<div id="gmapsInfoPrkl" class="gmapsInfo">'+
	'<h3>PRKL Club</h3>'+
	'12.8.2011 w/ Anal Thunder, Multi Climex etc.'+
    '</div>';
	
	var infowindow32 = new google.maps.InfoWindow({
	    content: contentString32
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.171307,24.946668);
  	var marker32 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"PRKL Club, Helsinki"
  	});
	
	google.maps.event.addListener(marker32, 'click', function() {
	  infowindow32.open(map,marker32);
	});
	
	//Uniikki, Tampere
	var contentString33 = '<div id="gmapsInfoUniikki" class="gmapsInfo">'+
	'<h3>Uniikki</h3>'+
	'2.9.2011 w/ Floaded'+
    '</div>';
	
	var infowindow33 = new google.maps.InfoWindow({
	    content: contentString33
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(61.496983,23.766185);
  	var marker33 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Uniikki, Tampere"
  	});
	
	google.maps.event.addListener(marker33, 'click', function() {
	  infowindow33.open(map,marker33);
	});
	
	//Semifinal, Helsinki
	var contentString34 = '<div id="gmapsInfoSemifinal" class="gmapsInfo">'+
	'<h3>Semifinal</h3>'+
	'29.12.2011 w/ Prime Time Violence<br/>'+
	'7.9.2011 w/ The Liar'+
    '</div>';
	
	var infowindow34 = new google.maps.InfoWindow({
	    content: contentString34
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.168428,24.933257);
  	var marker34 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Semifinal, Helsinki"
  	});
	
	google.maps.event.addListener(marker34, 'click', function() {
	  infowindow34.open(map,marker34);
	});
	
	//Lucky Monkeys, Lappeenranta
	var contentString35 = '<div id="gmapsInfoLuckyMonkeys" class="gmapsInfo">'+
	'<h3>Lucky Monkeys</h3>'+
	'10.9.2011 w/ Fudge Flounders'+
    '</div>';
	
	var infowindow35 = new google.maps.InfoWindow({
	    content: contentString35
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(61.058888,28.189845);
  	var marker35 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Lucky Monkeys, Lappeenranta"
  	});
	
	google.maps.event.addListener(marker35, 'click', function() {
	  infowindow35.open(map,marker35);
	});
	
	//Alakerta, Helsinki
	var contentString36 = '<div id="gmapsInfoAlakerta" class="gmapsInfo">'+
	'<h3>Alakerta</h3>'+
	'14.9.2011 w/ Lame Duck, No More Clothes'+
    '</div>';
	
	var infowindow36 = new google.maps.InfoWindow({
	    content: contentString36
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.159447,24.93124);
  	var marker36 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Alakerta, Helsinki"
  	});
	
	google.maps.event.addListener(marker36, 'click', function() {
	  infowindow36.open(map,marker36);
	});
	
	//Gloria, Helsinki
	var contentString37 = '<div id="gmapsInfoGloria" class="gmapsInfo">'+
	'<h3>Gloria</h3>'+
	'7.1.2012 w/ Hey Heather, Ranter, Colory<br/>'+
	'17.12.2011 w/ Pyh&auml;t Tepot, Caroline, Katujen &Auml;&auml;net<br/>'+
	'15.9.2011 w/ Pyh&auml;t Tepot, Caroline, Novella'+
    '</div>';
	
	var infowindow37 = new google.maps.InfoWindow({
	    content: contentString37
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.164123,24.945273);
  	var marker37 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Gloria, Helsinki"
  	});
	
	google.maps.event.addListener(marker37, 'click', function() {
	  infowindow37.open(map,marker37);
	});
	
	//Toimintakeskus Harjula, Lohja
	var contentString38 = '<div id="gmapsInfoHarjula" class="gmapsInfo">'+
	'<h3>Toimintakeskus Harjula</h3>'+
	'12.11.2011 w/ Martta Hakala, Muddy Bones'+
    '</div>';
	
	var infowindow38 = new google.maps.InfoWindow({
	    content: contentString38
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.249566,24.0695);
  	var marker38 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Toimintakeskus Harjula, Lohja"
  	});
	
	google.maps.event.addListener(marker38, 'click', function() {
	  infowindow38.open(map,marker38);
	});
	
	//Toimintakeskus Luuppi, Kontula, Helsinki
	var contentString39 = '<div id="gmapsInfoLuuppi" class="gmapsInfo">'+
	'<h3>Toimintakeskus Luuppi</h3>'+
	'3.12.2011 w/ Shiraz Lane, Dawn, M&auml;ster'+
    '</div>';
	
	var infowindow39 = new google.maps.InfoWindow({
	    content: contentString39
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.238341,25.083203);
  	var marker39 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Toimintakeskus Luuppi, Helsinki"
  	});
	
	google.maps.event.addListener(marker39, 'click', function() {
	  infowindow39.open(map,marker39);
	});
	
	
	//Rentukka, Jyvskyl
	var contentString40 = '<div id="gmapsInfoRentukka" class="gmapsInfo">'+
	'<h3>Rentukka</h3>'+
	'16.12.2011 w/ No More Clothes, Floaded'+
    '</div>';
	
	var infowindow40 = new google.maps.InfoWindow({
	    content: contentString40
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(62.247346,25.710669);
  	var marker40 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Rentukka, Jyvaskyla"
  	});
	
	google.maps.event.addListener(marker40, 'click', function() {
	  infowindow40.open(map,marker40);
	});
	
	
	//Bar Base, Helsinki
	var contentString41 = '<div id="gmapsInfoBase" class="gmapsInfo">'+
	'<h3>Bar Base</h3>'+
	'21.1.2012'+
    '</div>';
	
	var infowindow41 = new google.maps.InfoWindow({
	    content: contentString41
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.167977,24.93948);
  	var marker41 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Bar Base, Helsinki"
  	});
	
	google.maps.event.addListener(marker41, 'click', function() {
	  infowindow41.open(map,marker41);
	});
	
	
	//Kathrina, Helsinki
	var contentString42 = '<div id="gmapsInfoKathrina" class="gmapsInfo">'+
	'<h3>Kathrina</h3>'+
	'27.1.2012 Acoustic'+
    '</div>';
	
	var infowindow42 = new google.maps.InfoWindow({
	    content: contentString42
	});
	
	var image = new google.maps.MarkerImage('MCicon.png',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var shadow = new google.maps.MarkerImage('shadow-MCicon.png',
      new google.maps.Size(49, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 32));
  	var myLatLng = new google.maps.LatLng(60.167401,24.953899);
  	var marker42 = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
	  shadow: shadow,
	  title:"Kathrina, Helsinki"
  	});
	
	google.maps.event.addListener(marker42, 'click', function() {
	  infowindow42.open(map,marker42);
	});
	
}




//// ORDER FORM

function orderEnglishShow()
{
	document.getElementById("orderFlagEnLarge").style.visibility = "visible";
	document.getElementById("orderFlagEnSmall").style.visibility = "hidden";
	document.getElementById("orderFlagFiLarge").style.visibility = "hidden";
	document.getElementById("orderFlagFiSmall").style.visibility = "visible";
}

function orderFinnishShow()
{
	document.getElementById("orderFlagEnLarge").style.visibility = "hidden";
	document.getElementById("orderFlagEnSmall").style.visibility = "visible";
	document.getElementById("orderFlagFiLarge").style.visibility = "visible";
	document.getElementById("orderFlagFiSmall").style.visibility = "hidden";
}

function orderEnglishChoose()
{
	document.getElementById("orderFlagEnLarge").style.visibility = "visible";
	document.getElementById("orderFlagEnSmall").style.visibility = "hidden";
	document.getElementById("orderFlagFiLarge").style.visibility = "hidden";
	document.getElementById("orderFlagFiSmall").style.visibility = "visible";
	document.getElementById("orderFormEn").style.visibility = "visible";
	document.getElementById("orderFormFi").style.visibility = "hidden";
	document.getElementById("priceDivEn").style.visibility = "visible";
	document.getElementById("priceDivFi").style.visibility = "hidden";
	document.getElementById("priceSpanEn").style.visibility = "visible";
	document.getElementById("priceSpanFi").style.visibility = "hidden";
	document.getElementById("countryLabelFi").style.visibility = "hidden";
	document.getElementById("formCountryFi").style.visibility = "hidden";
	document.getElementById("countryAlertFi").style.visibility = "hidden";
	if (document.getElementById("formCountrySelOthEn").checked) {
		document.getElementById("countryLabelEn").style.visibility = "visible";
		document.getElementById("formCountryEn").style.visibility = "visible";
		document.getElementById("countryAlertEn").style.visibility = "visible";
	}
	else {
		document.getElementById("countryLabelEn").style.visibility = "hidden";
		document.getElementById("formCountryEn").style.visibility = "hidden";
		document.getElementById("countryAlertEn").style.visibility = "hidden";
	}
	document.getElementById("orderInfoEn").style.visibility = "visible";
	document.getElementById("orderInfoFi").style.visibility = "hidden";
	
}

function orderFinnishChoose()
{
	document.getElementById("orderFlagEnLarge").style.visibility = "hidden";
	document.getElementById("orderFlagEnSmall").style.visibility = "visible";
	document.getElementById("orderFlagFiLarge").style.visibility = "visible";
	document.getElementById("orderFlagFiSmall").style.visibility = "hidden";
	document.getElementById("orderFormEn").style.visibility = "hidden";
	document.getElementById("orderFormFi").style.visibility = "visible";
	document.getElementById("priceDivEn").style.visibility = "hidden";
	document.getElementById("priceDivFi").style.visibility = "visible";
	document.getElementById("priceSpanEn").style.visibility = "hidden";
	document.getElementById("priceSpanFi").style.visibility = "visible";
	document.getElementById("countryLabelEn").style.visibility = "hidden";
	document.getElementById("formCountryEn").style.visibility = "hidden";
	document.getElementById("countryAlertEn").style.visibility = "hidden";
	if (document.getElementById("formCountrySelOthFi").checked) {
		document.getElementById("countryLabelFi").style.visibility = "visible";
		document.getElementById("formCountryFi").style.visibility = "visible";
		document.getElementById("countryAlertFi").style.visibility = "visible";
	}
	else {
		document.getElementById("countryLabelFi").style.visibility = "hidden";
		document.getElementById("formCountryFi").style.visibility = "hidden";
		document.getElementById("countryAlertFi").style.visibility = "hidden";
	}
	document.getElementById("orderInfoEn").style.visibility = "hidden";
	document.getElementById("orderInfoFi").style.visibility = "visible";
}

function checkAmount(lang)
{
	var lan = lang;
	var value = document.getElementById("formAmount"+lan).value;
	var isNumber = value.match(/^\d+$/);
	var isOther = document.getElementById("formCountrySelOth"+lan).checked
	
	//document.getElementById("priceSpanFi").innerHTML = "jee";
	
	if (isNumber) {
		if (value == 0) {
			if (lan == "En") var alert = "Enter a number greater than zero!";
				else var alert = "Sy&ouml;t&auml; nollaa suurempi numero!";
			document.getElementById("amountAlert"+lan).innerHTML = alert;
			document.getElementById("priceSpan"+lan).innerHTML = 0 + "&euro;";
		}
		else {
			document.getElementById("amountAlert"+lan).innerHTML = "";
			if (isOther) {
				document.getElementById("priceSpan"+lan).innerHTML = value*4+2 + "&euro;";
			}
			else {
				document.getElementById("priceSpan"+lan).innerHTML = value*4+1 + "&euro;";
			}
		}
	}
	else {
		if (lan == "En") var alert = "Enter a number!";
			else var alert = "Sy&ouml;t&auml; numero!";
		document.getElementById("amountAlert"+lan).innerHTML = alert;
		document.getElementById("priceSpan"+lan).innerHTML = "";
	}
}

function checkEmail(lan)
{
	var value = document.getElementById("formEmail"+lan).value;
	var isValid = value.match( /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/ );
	if (isValid) {
		document.getElementById("emailAlert"+lan).innerHTML = "";
	}
	else {
		if (lan == "En") var alert = "Enter a valid email address!";
				else var alert = "Sy&ouml;t&auml; s&auml;hk&ouml;postiosoite!";
		document.getElementById("emailAlert"+lan).innerHTML = alert;
	}
}

function checkName(lan)
{
	var value = document.getElementById("formName"+lan).value;
	var isValid = value.match(/^\w+\s+\w/);
	if (isValid) {
		document.getElementById("nameAlert"+lan).innerHTML = "";
	}
	else {
		if (lan == "En") var alert = "Enter full name!";
				else var alert = "Sy&ouml;t&auml; koko nimi!";
		document.getElementById("nameAlert"+lan).innerHTML = alert;
	}
}

function checkAddress(lan)
{
	var value = document.getElementById("formAddress"+lan).value;
	var isValid = value.match(/^\w/);
	if (isValid) {
		document.getElementById("addressAlert"+lan).innerHTML = "";
	}
	else {
		if (lan == "En") var alert = "Enter postal address!";
				else var alert = "Sy&ouml;t&auml; postiosoite!";
		document.getElementById("addressAlert"+lan).innerHTML = alert;
	}
}

function checkZipCode(lan)
{
	var value = document.getElementById("formZipCode"+lan).value;
	var isValid = value.match(/^\d/);
	if (isValid) {
		document.getElementById("zipCodeAlert"+lan).innerHTML = "";
	}
	else {
		if (lan == "En") var alert = "Enter a valid zip code!";
				else var alert = "Sy&ouml;t&auml; postinumero!";
		document.getElementById("zipCodeAlert"+lan).innerHTML = alert;
	}
}

function checkCity(lan)
{
	var value = document.getElementById("formCity"+lan).value;
	var isValid = value.match(/^\w/);
	if (isValid) {
		document.getElementById("cityAlert"+lan).innerHTML = "";
	}
	else {
		if (lan == "En") var alert = "Enter city!";
				else var alert = "Sy&ouml;t&auml; postitoimipaikka!";
		document.getElementById("cityAlert"+lan).innerHTML = alert;
	}
}

function checkCountrySel(lan)
{
	var isOther = document.getElementById("formCountrySelOth"+lan).checked
	if (isOther) {
		document.getElementById("countryLabel"+lan).style.visibility = "visible";
		document.getElementById("formCountry"+lan).style.visibility = "visible";
		document.getElementById("countryAlert"+lan).style.visibility = "visible";
	}
	else {
		document.getElementById("countryLabel"+lan).style.visibility = "hidden";
		document.getElementById("formCountry"+lan).style.visibility = "hidden";
		document.getElementById("countryAlert"+lan).style.visibility = "hidden";
	}
	checkAmount(lan);
}

function checkCountry(lan)
{
	var value = document.getElementById("formCountry"+lan).value;
	var isValid = value.match(/^\w/);
	if (isValid) {
		document.getElementById("countryAlert"+lan).innerHTML = "";
	}
	else {
		if (lan == "En") var alert = "Enter country!";
				else var alert = "Sy&ouml;t&auml; maa!";
		document.getElementById("countryAlert"+lan).innerHTML = alert;
	}
}

