// JavaScript Document

ShowPicture = function(url, imgtag)
{
	document.getElementById(imgtag).src = url;
}

SetValue = function(id, value)
{
	document.getElementById(id).value = value;
}