<!--
//#*******************************************************
//#     @name             SSLCertificate.js
//#     @creation date    8 Sept, 2008
//#     @author           Carl Steele, Lands' End
//#     @purpose          This javascript will pop up the Verisign window 
//#*******************************************************
//DEV
//var ukURL = "https://seal.verisign.com/splash?form_file=fdf/splash.fdf&dn=INTLUKDEV.LANDSEND.COM&lang=en";
//var deURL = "https://seal.verisign.com/splash?form_file=fdf/splash.fdf&dn=INTLDEDEV.LANDSEND.COM&lang=de";
//QA
//var ukURL = "https://seal.verisign.com/splash?form_file=fdf/splash.fdf&dn=INTLUKQA.LANDSEND.COM&lang=en";
//var deURL = "https://seal.verisign.com/splash?form_file=fdf/splash.fdf&dn=INTLDEQA.LANDSEND.COM&lang=de";
//PRODUCTION
var ukURL = "https://seal.verisign.com/splash?form_file=fdf/splash.fdf&dn=LANDSEND.CO.UK&lang=en";
var deURL = "https://seal.verisign.com/splash?form_file=fdf/splash.fdf&dn=LANDSEND.DE&lang=de";

var theURL;

// Open window with the correct Verisign window                                                
function openCTWindow(theURL){
                SizeChartpopup=window.open(theURL,"SizeChartpopup","height=480,width=550,status=0,menubar=0,location=0,resize=0,scrollbars=1"); 
                SizeChartpopup.focus();
}

//  This function is called to select the correct URL based upon the site
function displayCTWindow(site){ 
    if (site == 361){
        theURL = ukURL;
    }
     
    if (site == 631){
        theURL = deURL;     
    }    
    	openCTWindow(theURL);
}

//-->
