// JavaScript Document
function PrintIt(sPage){
	window.open(sPage,'_blank','location=no')
}

function OpenDoc(sFile,sWinName){
	iWidth = (screen.width/100)*90
	iHeight = (screen.height/100)*90
	window.open(sFile,sWinName,'location=no,width='+iWidth+'px,height='+iHeight+'px' )
}

function swapBg(id,bOn){
	if(bOn){
		document.getElementById(id).style.backgroundColor="#E7EDF2"
		//document.getElementById(id+"title").style.fontWeight="Bold"
		document.getElementById(id+"title").style.color="#3366F3"
	}else{
		document.getElementById(id).style.backgroundColor=""
		//document.getElementById(id+"title").style.fontWeight="Normal"
		document.getElementById(id+"title").style.color=""
	}
}