function setStyle(id){
if(document.all){
	eval("document.all." + id + ".style.backgroundColor='#2e5a9e'");        
	if(id.charAt(id.length-1)!="2"){
	eval("document.all." + id + "1.style.color='#FFFFFF'");
	}
 }
else return true;
}
function unsetStyle(id){
if(document.all){
	eval("document.all." + id + ".style.backgroundColor='#ebebeb'");
	if(id.charAt(id.length-1)!="2"){
	eval("document.all." + id + "1.style.color='#2e5a9e'");
	}
 }
else return true;
}


function openwin(url, width, height) {
  var nwin = window.open(url, '', 'directories=no,location=no,width='+width +',height=' + height + ',resizable=no,menubar=no,scrollbars=yes,titlebar=no,toolbar=no,screenX=100,screenY=100')
}

