
<!--

/*
* Mouse Over Code
* 
*/

browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion); 

if (browser_name == "Netscape" && browser_version < 2.0)
        {
        roll = 'false';
        }
else if (browser_name == "Netscape" && browser_version == 2.0)
        {
        roll = 'false';
        }
else if (browser_name == "Netscape" && browser_version >= 3.0)
        {
        roll = 'true';
        }
else if (browser_name == "Microsoft Internet Explorer" && browser_version <= 2.0)
        {
        roll = 'false';
        }
else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0)
        {
        roll = 'true';
        }
else
        {
        roll = 'false';
        }

function msover(img1,ref1,msg)
        {
                if (roll == 'true')
                        {
                        document.images[img1].src = ref1;
                        window.status=msg;                      
                        }
        }
        
function msout(img1,ref1,msg)
        {
                if (roll == 'true')
                        {
                        document.images[img1].src = ref1;
						window.status=msg;                       
                        }
        }


if (roll == 'true')
        {
button1 = new Image();
button1.src ="graphics/intool_about_on.gif";
button2 = new Image();
button2.src ="graphics/intool_assisted_on.gif";
button3 = new Image();
button3.src ="graphics/intool_contactus_on.gif";
button4 = new Image();
button4.src ="graphics/intool_faq_on.gif";
button5 = new Image();
button5.src ="graphics/intool_home_on.gif";
button6 = new Image();
button6.src ="graphics/intool_patientinfo_on.gif";
button7 = new Image();
button7.src ="graphics/intool_research_on.gif";
button8 = new Image();
button8.src ="graphics/intool_services_on.gif";
button9 = new Image();
button9.src ="graphics/intool_success_on.gif";
button10 = new Image();
button10.src ="graphics/intool_vtours_on.gif";
button11 = new Image();
button11.src ="graphics/intool_whatsnew_on.gif";


  		}

//end



//-->


var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function popUpWin(url, type, strWidth, strHeight){
	
	closeWin();
	
	if (type == "fullScreen"){
		strWidth = screen.availWidth - 10;
		strHeight = screen.availHeight - 160;
	}
	
	var tools="";
	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=no,location=no,scroll=yes,scrollbars=yes,menubar=no,width="+strWidth+",height="+strHeight+",top=0,left=0";
	if (type == "console") tools = "resizable,toolbar=no,location=no,scroll=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

function printFlash(source, width, height, id, bg_color) {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ');
	document.write('width="'+width+'" height="'+height+'" id="'+id+'" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+source+'" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="'+bg_color+'" />');
	document.write('<embed src="'+source+'" menu="false" quality="high" bgcolor="'+bg_color+'" width="'+width+'" height="'+height+'" name="'+id+'" align="middle" ');
	document.write('allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}