/* Funzioni comuni */

function popUp (page, name, width, height, scrollbars, resizable)
{
	window.open (page, name, 'status = yes, menubar = yes, width = ' + width + ', height = ' + height + ', scrollbars = ' + scrollbars + ', resizable = ' + resizable);
}

function ChangeImage (Name, Image) {
	document.images[Name].src = Image;
}