﻿function Customization() {
	this.languageCode		= "en";
	
	this.company_name = "";
	this.product_name = "Health Check";
	this.product_version = "1.1";
	this.product_alias = "HC";
	this.copyright_string = "Copyright &copy; 2008 F-Secure Corporation. All Rights Reserved.";
	this.about = "About";
	this.help = "Help";
	this.learn_more_about_product = "Learn more about our products";
	this.vulnerability_info_server = "http://www.f-secure.com/vulnerabilities";
	
	/** Intro page **/
	this.intro_title = "Step safely into the online world";
	this.intro_string = "To be sure that you can be safely online, check your computer with " + this.product_name + ". It makes sure that your computer has the necessary security products, and the operating system and programs on your computer are up to date.";
	this.intro_get_started = "Before starting the check, please make sure that you have Administrator rights for this computer.";
	
	/** Techincal details **/
	//Link to F-Secure advisory page. To disable this, simply set the value to null, this.advisory_detail = null
	this.advisory_detail = "<a class='urlNoVisited' href='" + this.vulnerability_info_server + "/$SA$' target='_blank'>Technical details</a> $NEW$.";
	
	
	/** Upsell title **/
	this.recommend_to_get_new_av = "We recommend that you get a new antivirus program";
	
	/** Upsell solutions **/
	this.recommend_to_get_new_av_desc = "Your antivirus program has out-of-date virus definitions. The antivirus program is efficient against viruses only if it is automatically updated several times a day. You should consider getting yourself a new antivirus program.";
	this.upsell_recommend_get_antivirus = "Optus Internet Security Suite is a fully automatic security product with one of the fastest and most accurate detection of new malware. Click Download Now and login to member services to download your Optus Intenet Security Suite now.";
	this.upsell_get_firewall = "Your computer does not have firewall protection. Get protected now with Optus Internet Security Suite. It contains all the security products you need -  firewall, antivirus, antispyware and more.";
	this.upsell_get_antivirus = "Your computer does not have an antivirus program installed. Get protected now with Optus Internet Security Suite. It contains all the security products you need - firewall, antivirus, antispyware and more.";
	this.upsell_get_antispyware = "Your computer does not have an antispyware program installed. Get protected now with Optus Internet Security Suite. It contains all the security products you need - firewall, antivirus, antispyware and more.";
	this.upsell_learn_more = "Learn more about the program...";	
	this.upsell_learn_more_url = "http://personal.optus.com.au/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_woRHS&FP=/personal/customerhelp/securitysuite&site=personal";
	this.upsell_try_url = "https://memberservices.optuszoo.com.au/login/?target=/securitysuite/";
	this.upsell_buy_url = "https://memberservices.optuszoo.com.au/login/?target=/securitysuite/";
	
	/** Buttons **/
	//To disable any one of them or both, simply set the value to null, eg. this.upsell_try = null
	this.upsell_try = "Download Now";
	this.upsell_buy = null;
    
    /** Bookmark **/

    //bookmark_message_part_1 and bookmark_message_part_2 will be joined into one sentence
    this.bookmark_message_part_1 = "To run this "+this.product_name+" regularly, ";
    this.bookmark_message_part_2 = "bookmark this page."
    //The part of the message that will be linked with the bookmark, please supply 1 or 2, 
    //eg. if part 2 should be linked, indicate:
    //this.bookmark_message_part_with_link = 2;
    this.bookmark_message_part_with_link = 2;
}

Customization.prototype = {
}

customization = new Customization();
