//	DelcoAtNight Functions

function getURL(thisLocation) {
	window.location.href = thisLocation;
}

function changeCell(target, color) {
	target.style.backgroundColor = color;
	target.style.cursor = "pointer";
}

//Pop window
//PC: IE 6, Firefox 1.0.6, MAC: Firefox 1.0.4, Safar 1.3
function popWindow(src, width, height, expanded) {
	var w = 800, h = 600;
	if (screen.width || screen.height) {
		w = screen.width;
		h = screen.height;
	}
	var leftPos = (w-width)/2;
	var topPos = (h-height)/2;
	if (expanded) {
		//window w/ toolbar, status, scrollbar
		window.open(''+src+'','','width='+width+',height='+height+',toolbar=yes,status=yes,menubar=no,scrollbars=yes,resizeable=yes,top=' + topPos + ',left=' + leftPos);
	} else {
		//window plain
		window.open(''+src+'','','width='+width+',height='+height+',toolbar=no,status=no,menubar=no,scrollbars=yes,resizeable=no,top=' + topPos + ',left=' + leftPos);
	}
	void(0);
}

