﻿var newwindow = '';
function openNewWindow(url,width,height,scrolls)
{
	if (!scrolls) scrolls = 0;
	else scrolls = 1;
	
	scrolls = 1;

	if (!newwindow.closed && newwindow.location) newwindow.location.href = url;
	else
	{
		newwindow=window.open(url,'name','width=' + width + ',height=' + height + ',toolbar=0,scrollbars=' + scrolls + ',location=0,statusbar=0,menubar=0,resizable=1');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) newwindow.focus();
}


function changeColor(id, color, bdrcolor) { 
    element = document.getElementById(id); 
    event.cancelBubble = false; 
    //oldColor = element.currentStyle.background; 
    element.style.background = color;
    element.style.borderwidth = '10px';
    element.style.bordercolor = '#white'; 
} 


