var menuImage="images/hoops_logo_menu.bmp";

function showImage(elementID,image){
            document.getElementById(elementID).innerHTML = "<img height='27' width='15' src='"+ menuImage + "' />";
}

function clearImage(elementID){
            document.getElementById(elementID).innerHTML = "";
}

function CheckIsIE() 
	{ 
   	if  (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER')  { return true;} 
    	else { return false; } 
} 

function PrintThisPage(){ 
	     if (CheckIsIE() == true) 
      		{ 
         	document.hoops_content_frame.focus(); 
         	document.hoops_content_frame.print(); 
      		}      
      		else 
       		{ 
          	window.frames['hoops_content_frame'].focus(); 
          	window.frames['hoops_content_frame'].print(); 
        	} 
} 
