var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function movie_DoFSCommand(command, args) {
  var movieObj = InternetExplorer ? movie : document.movie;
  //
  if(command == "helpLink") {
	window.location = ("../help/index.asp");
 }
  //
  if(command == "loginLink") {
	popupWin = window.open('../PreferredCustomer/MemberLogin.asp', 'Membership', 'location=no,status=yes,resizable=yes,menubar=no,toolbar=no,directories=no,scrollbars=yes,width=750,height=525');
 }
  // 
}
// 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 movie_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call movie_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}