function movepic(img_name,img_src) {
	document.getElementById(img_name).src=img_src;
	return true;
}

function changeLoc(id) {
	url = document.getElementById(id).value;
	document.location = url;
	return true;
}

