function roll(img_name, img_src)
{
   imgId = document.getElementById(img_name);
   imgId.src = img_src;
}


function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}