function CloseIt(){
	ShutIt=window.close( );
}
function BuOver(elem){
	elem.style.backgroundColor = "#d10000";
	elem.style.cursor = 'hand'
	
}
function BuOut(elem){
	elem.style.backgroundColor = "#a80101";
}
function display(url, width, height){
    var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,top=10,left=40,menubar=no,status=no' );
}
function results(url, width, height){
    var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,top=10,left=40,menubar=no,status=no' );
}
function keys(){
	window.open("admin/admin.htm","Admin","width=790,height=510,resizable=yes, scrollbars=yes, top=10, left=40, menubar=no, status=no'");
}
function openWin(theURL,winName,features) {
  	window.open(theURL,winName,features);
}
function ToggleInterestON(){
	document.getElementById('interesttable').style.visibility='visible';
	document.getElementById('interestbg').style.height='170';
	document.getElementById('toggleinton').checked=true;
}
function ToggleInterestOFF(){
	document.getElementById('interesttable').style.visibility='hidden';
	document.getElementById('interestbg').style.height='0';
	document.getElementById('toggleintoff').checked=true;
}