// JavaScript Document

<!--hide from older browsers

//to turn the threatcon alert on, set showHide to "block". 
//to turn it off, set showHide to "none".
var showHide = "block";

//these are the variables that will need to be customized for each virus
var virusLevel = "4";
var campaignID = "121136";
var virusName = "W32.Blaster.Worm";
var virusSolutionPID = "634269";

//these are the variables that will need to be customized for each locale
var veryLowRisk = "very low";
var lowRisk = "low";
var moderateRisk = "moderate";
var severeRisk = "severe";

//this determines the threat bar image and risk level text based on virus level.  
//you do not need to modify this.
if (virusLevel == "1") {
	var virusBar = "threatcon1.gif";
	var virusRisk = veryLowRisk;
} else if (virusLevel == "2") {
	var virusBar = "threatcon2.gif";
	var virusRisk = lowRisk;
} else if (virusLevel == "3") {
	var virusBar = "threatcon3.gif";
	var virusRisk = moderateRisk;
} else if (virusLevel == "4") {
	var virusBar = "threatcon4.gif";
	var virusRisk = severeRisk;
	}
	
var virusImage = "<IMG src='/v2.0-img/images/symant73/met/"+virusBar+"'>";

//this shows or hides the div containing the threatcon based on 
//the showHide variable set above.  you do not need to modify this.



function showDiv(myDivID, showOrHide) {
	navBlock = document.getElementById(myDivID);
	navBlock.style.display = showOrHide;
}

	

//end hiding-->