function movepic(img_name,img_src) {
	document[img_name].src=img_src;
}

function movepicDim(img_name,img_src,img_width,img_height) {
	document[img_name].src=img_src;
	document[img_name].width=img_width;
	document[img_name].height=img_height;
}


function display(id) {
	document.getElementById(id).style.display = "";
}
function noDisplay(id) {
	document.getElementById(id).style.display = "none";
}

