var imagenum = "1";




function imgRow()
{

	if (imagenum == "1")
	{document.write('<span class="imgrow">')}

	else
	{}

}

function imgRowEnd()
{
	if (imagenum == "1")
	{
	imagenum = "2";
	}

	else if (imagenum == "2")
	{
	imagenum = "3";
	}
	
	else if (imagenum == "3")
	{
	document.write('</span>');
	imagenum = "1";
	}

}


function imgdownload(IMG_URL)
{
var imageURL = IMG_URL;

if (imageURL.match("_wdt"))
{var orgURL = imageURL.replace(/_wdt.jpg/,".jpg");}
else if (imageURL.match("_mid"))
{var orgURL = imageURL.replace(/_mid.jpg/,".jpg");}


document.write('<a title="Høyreklikk - lagre mål som" class="aorginal" href="'+orgURL+'" target="_black">Last ned bildet her</a>');
}




