/////////////////////////////////////////////////////////////////////////////// // Symantec Corporation // Internet Threat Meter - Javascript Loader // // Description: // This script Checks for required objects then displays the ITM // // Author: CX WebDev // Born on Date: 2006.12.13 // // Revisions: // 2006.12.10 KJD: Initial script created // /////////////////////////////////////////////////////////////////////////////// var symITMversion = "20061213"; // 2006.12.05 KJD: Check for things loaded and set var symITM_set_CSS = 0; var symITM_set_JS = 0; var symITM_JS_loaded = 0; var symITM_showSearch = 1; var symITM_showDownload = 1; var symITM_showSales = 0; var symITM_Location = "http://www.symantec.com/internetthreatmeter"; // 2006.12.21 KJD: Added Vars for Files var symITM_CSSFile = "http://www.symantec.com/internetthreatmeter/styles/default/threatmeter_css.jsp?server=www&width=180&height=240&dateString=11%2F10%2F09%2C+11%3A37PM&website=_theonlinefamily&search=1&download=1&sales=0&style=default"; var symITM_JSFile = "http://www.symantec.com/internetthreatmeter/styles/default/threatmeter20061213.js"; // 2006.11.30 KJD: Load the CSS and JS function include_js(script_filename) { var html_doc = document.getElementsByTagName('head').item(0); var js = document.createElement('script'); js.setAttribute('language', 'javascript'); js.setAttribute('type', 'text/javascript'); js.setAttribute('src', script_filename); html_doc.appendChild(js); return false; } function include_css(script_filename) { var html_doc = document.getElementsByTagName('head').item(0); var file = document.createElement('link'); file.setAttribute('rel','stylesheet'); file.setAttribute('type','text/css'); file.setAttribute('ID',"symITMCSS"); file.setAttribute('href',script_filename); html_doc.appendChild(file); return false; } function LoadITM() { var reloadthis = 0; // 2006.12.05 KJD: Start to load items if( !( symITM_set_CSS ) ) { include_css( symITM_CSSFile ); symITM_set_CSS = 1; } if( !( symITM_set_JS ) ) { include_js( symITM_JSFile ); symITM_set_JS = 1; } if( document.getElementById("symantec_itm_box") ) { // 2006.12.05 KJD: Check for JS Loaded if( !( symITM_JS_loaded ) ) { reloadthis = 1; } } else { reloadthis = 3; } if( reloadthis ) { setTimeout(LoadITM, 250); } else { DisplayITM(); } } function DisplayITM() { document.getElementById("symantec_itm_box").innerHTML = "
Activity
Risk
 Email
MEDIUM RISK:
Use Extra Caution
On November 10, 2009, Microsoft published six Security Bulletins for vulnerabilities in various products. Attackers can exploit some of these issues through email. Apply the updates immediately.
 
 Email
 Web Activities
MEDIUM RISK:
Use Extra Caution
On November 10, 2009, Microsoft published six Security Bulletins for vulnerabilities in various products. Attackers can exploit some of these issues through malicious sites. Apply the updates immediately.
 
 Web Activities
 Instant Messaging
MEDIUM RISK:
Use Extra Caution
On November 10, 2009, Microsoft published six Security Bulletins for vulnerabilities in various products. Attackers can exploit some of these issues via instant-messaging applications. Apply the updates immediately.
 
 Instant Messaging
 File Sharing
MEDIUM RISK:
Use Extra Caution
On November 10, 2009, Microsoft published six Security Bulletins for vulnerabilities in various products. Attackers can exploit some of these issues via file-sharing applications. Apply the updates immediately.
 
 File Sharing
Updated 11/10/09, 11:37PM
 
Search for Virus & Risks
 
"; } setTimeout(LoadITM,250);