<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

// Handle all the the FSCommand messages in a Flash movie
function detailspage_clickthough2_DoFSCommand(command, args) {
  // var detailspage_clickthough2Obj = InternetExplorer ? detailspage_clickthough2 : document.detailspage_clickthough2;
  //
  // Place your code here...
  //
	document.form_banner.submit();
}

// 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 detailspage_clickthough2_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call detailspage_clickthough2_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}

--><!--vicweb01-->