var callbackTimer = setInterval(function() {
	var isLoaded = false;
 	try { 
		isLoaded = (document['vts'].startAutomation != undefined);
	} catch (e) {}
	// alert(&quot;tried&quot;);
	if (isLoaded) {
		clearInterval(callbackTimer);
		if(window.location.href.indexOf('startAutomator=true') != -1) {
			document['vts'].startAutomation();
		}
	}
}, 1000);
