﻿var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function cow_DoFSCommand(command, args) {
	var cowObj = isInternetExplorer ? document.all.cow : document.cow;
	//
	if (command == "MakeHomePage")
        {
                setme();
        }
	//
}

	function setme(){
		homepage.setHomePage('http://www.muller-israel.co.il/');
	}
// Hook 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 cow_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call cow_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
