function changeColor(CellName,Switch,Color){
	if(Switch){
		document.getElementById(CellName).style.background=Color
	}else{
		document.getElementById(CellName).style.background=Color
		document.getElementById(CellName).style.color=""
	}
}
function CheckIsIE() 
{ 
if (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER') { return true;} 
else { return false; } 
}
 
function PrintIt(){ 
	if (CheckIsIE() == true){ 
		document.icontent.focus(); 
		document.icontent.print(); 
	}else{ 
	window.frames['icontent'].focus(); 
	window.frames['icontent'].print(); 
	} 
}

function OpenDoc(sDoc,sName){
	window.open(sDoc, sName, "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=800,height=600,left=0,top=0");
}