var image;
image = "";

function launchLargeImage(img)
{
	image = img;
	window.open("imagewindow.php","imageWindow","width=680,height=500,menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
}

function sendImage()
{
	return image;
}

function imageswap(formpath, imgid)
{
	if (document.getElementById(imgid) && document.getElementById(formpath))
	{
		document.getElementById(imgid).src = document.getElementById(formpath).value;
	}
	else
	{
		alert("Ett fel uppstod.");
	}
}
