<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function home_DoFSCommand(command, args) {
	var homeObj = isInternetExplorer ? document.all.home : document.home;
	//
	if ( command == "openZoom" ) {
	
		window.open("zoom.asp?"+args,"zoom","width=780,height=580");
	
	} else if ( command == "openZoomDesigner" ) {


		window.open("designer.asp?d_id="+args, "designer","left=20,top=20,width=800,height=600,scrollbars=1,toolbar=0,resizable=0");

	}
	//
}
// 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 home_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call home_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->