function setImage(id,URL,check,radio)
{
	document.getElementById(id).src=URL
	
	if ( check ) {
		document.getElementById(radio).checked = true;
	}
}

function changeMouse()
{
	document.cursor="hand";
}