var current= '#FFFFFF';
var notCurrent = '#007DC7';
var roll = '#007DC7';

			function doPopup(url, name, width, height,scrollbars)
			{
				
				var extraFeatures = '';
				if (scrollbars) 
					extraFeatures = ',scrollbars=yes';
				
				var w = window.open(url, name, 'width='+width+',height='+height+extraFeatures);
				w.focus();
			}	
			function doImgPopup(url, name, width, height, docTitle)
			{
				
				var extraFeatures = '';
				
					extraFeatures = ',scrollbars=yes';
				
				var w = window.open(url, name, 'width='+width+',height='+height+extraFeatures);
				w.document.title=docTitle;
				w.focus();
			}	