// Localized Strings
function getCloseText() {
	var closeText = Localize("Close Window");
	return closeText;
}

function getErrorText() {
	var errorText = Localize("Error opening help wizard.");
	return errorText;
}

// Function so Idiom knows to translate string
function Localize(string) {
	return string;
}

// Initialize promos
/*var wiz_promos = new Array();
	wiz_promos[0] = Localize("McAfee is the greatest");
	wiz_promos[1] = Localize("Millions of people get viruses every day")+"<br/>"+Localize(" - source: McAfee");
	wiz_promos[2] = Localize("Need additional help with the site?")+"<br/>"+Localize("Please contact Sunil");
	wiz_promos[3] = Localize("Good luck finding what you want, and stay away from viruses");

var wiz_promos = new Array();
	wiz_promos[0] = "<img src='/common/media/images/content/promos/helpwizard_promo.jpg' />";
*/