
	 ValidationToolTipAnimation=true;
	 ValidationToolTipAnimationDelay=300;
	 OverlayAnimation=true;
	 OverlayAnimationDelay=500;
	 OverlayOpacity=0.4;
	 DefaultSize=62.5;
	 FontResizeSteps=5;

function open_new_window() 
{
var new_window = window.open("","hoverwindow","width=300,height=300,left=708,top=469");

// open new document 
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><title></title>");
new_window.document.write("<body id=\"popup_win\" bgcolor=\"#FFFFFF\">");
new_window.document.write("The SDI FAN&reg; program measures weekly activity for cold and flu based upon real-time reports of symptoms. As the longest-running respiratory tracking program in the US, SDI FAN&reg; covers illness levels in 135 regions across the country utilizing panel-member reporting along with patient-specific data.");
new_window.document.write(" Incidence of illness is categorized as Low (0-5% population affected), Moderate (5-10% population affected), High (10-15% population affected), or Very High (&gt;15% population affected). Advanced tracking uses illness status levels to predict change in the affected population for the US nine Census Regions.");
new_window.document.write("<br>");
new_window.document.write("</body></html>");

// close the document
new_window.document.close(); 
}

// This is the function that will close the
// new window when the mouse is moved off the link
function close_window() 
{
new_window.close();
}
