// HANDLES FSCOMMAND CALL FOR INTERNET EXPLORER
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write('<script language=VBScript\> \n');
document.write('on error resume next \n');
document.write('Sub yigalfeliks_FSCommand(ByVal command, ByVal args)\n');
document.write(' call yigalfeliks_DoFSCommand(command, args)\n');
document.write('end sub\n');
document.write('</script\> \n');
}
var hashname;
function yigalfeliks_DoFSCommand(command, args){
	if(command=="change_hash"){
		window.location = "#!"+args;
		hashname = args;
	}
}
function change_hash(str){
	setfrom_hash();
}
function setfrom_hash(){
	str = location.hash;
	str = str.replace("#!","");
	/*
	if(str!=""){
		document.yigalfeliks.SetVariable('hashname',str);
	}
	*/
	return str;
}

