//call the global trackers - wrapped in error handling, just to be safe
function htl_CallExitTracker(strVirtualPath, objWTOptions, bNoAutoPath) {
	try {
		gf_CallExitTracker((!bNoAutoPath?"/hotel/":"")+strVirtualPath, objWTOptions);
	} catch (e) { }
}
function htl_CallTracker(strVirtualPath, objWTOptions, bNoAutoPath) {
	try {
		gf_CallTracker((!bNoAutoPath?"/hotel/":"")+strVirtualPath, objWTOptions);
	} catch (e) { }
}

// This function is used to move the focus on the element id passed by parameter
function moveFocus(elementId){
    var element=document.getElementById(elementId);
    if(element!=null && element != "undefined"){
    	element.focus();
    }
}