/** http://blog.flexexamples.com/2008/03/11/calling-actionscript-functions-from-your-html-templates-using-the-externalinterface-api/ */
function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
		//return document.getElementById(movieName);
	} else {
		return document[movieName];
	}
}

function resetSeller()
{
	//alert(String(document[movieName]));
	
	//var flash = thisMovie('humer');
	//alert(flash.toString());
	//flash.resetApp();
	//return false;
	$("#humer").get(0).resetApp();
}