﻿//Evaluates a variable name in the context of the page
//Used by the WTOMap.swf commponent 
function evalVar(variable) {
	if(window[variable] != null && window[variable] != undefined)
		return window[variable];
	else
		return null;
}

function logEv(variable) {
	//console.log(variable);
}
