<!--


function popWindow(image){
	var newWin=window.open(image,'image','width=650,height=580,scrollbars=yes,left=0,top=0,menubars=no,toolbars=no,resizable=yes');
} 
function popImg(image){
	var newWin=window.open(image,'image','width=450,height=580,scrollbars=yes,left=0,top=0,menubars=no,toolbars=no,resizable=yes');
} 

//sniffer
function Is() {
  var agent = navigator.userAgent.toLowerCase();
  var is_major = parseInt(navigator.appVersion);
  var is_minor = parseFloat(navigator.appVersion);
  this.ns = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)) && (is_major < 5));
  this.ie = (agent.indexOf("msie") != -1);
  this.dom = ((agent.indexOf('mozilla')!=-1) && (agent.indexOf('gecko') != -1) && (is_major >= 5));
}

var is = new Is();



function changeColor(thisID, colorNum){
	if(is.ie) {
		document.all[thisID].style.backgroundColor=colorNum;
	} else if(is.ns) { //stupid old netscape
		document[thisID].bgColor=colorNum;
	} else if(is.dom) {
		document.getElementById(thisID).style.backgroundColor=colorNum;
	}
}


// -->