/*
Change Cell Backgrounds -
&copy; Shivaji Basu (www.shivbasu.com)
To add more shock to your site, visit www.DHTML Shock.com
*/

function cOn(elem){
	if(document.getElementById||(document.all && !(document.getElementById))){
		elem.style.color="#013110";
		elem.style.backgroundColor="#eee";
	}
}

function cOut(elem){
	if(document.getElementById||(document.all && !(document.getElementById))){
		elem.style.color="#420101";
		elem.style.backgroundColor="#fff";
	}
}

/*
pop-up window
*/
function open_window(url,winname,features){
	mywin = window.open(url,winname,features);
	mywin.focus();
	return false;
}
