

/*..................THIRD JS FILE..............................*/

//Make sure the Hemscott server is up and running by ensuring that the variable code has been assigned the value "LSE"
var NYSE = (code=="NYSE") 
	? 
		//Create a new instance of the object loadVariables containing the values from the script above
		new loadVariables(sec,min,hour,day,theMonth,year,prices,change,perc) 
		: 
		//Create a new instance of the loadVariables object containing null values
		new loadVariables("00","00","00","..","..","..","00.00","00","0");

