//Jim Doran 
function OpenWin(sURL,swinName,features) {  
  window.open(sURL,swinName,features);
}
 
function swapBgImage(MyID, theState, sPath) {
	if (theState == "over") {
		var theStyle = sPath+' no-repeat top left';
		document.getElementById(MyID).style.background = theStyle;
	 }
	//else
//	{
//	var theStyle = 'url('+sPath+') no-repeat top left';
//	document.getElementById(MyID).style.background = theStyle;
//	}
}