var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function venthead_DoFSCommand(command, args) {
  var ventheadObj = InternetExplorer ? venthead : document.venthead;
	if (command == "open") {
		document.venthead.style.height=args;
	}
}
// 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 venthead_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call venthead_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}
document.write('<EMBED style="position: absolute; z-index: 3; left: 13px; top: 2px; width: 1000px; height: 230px" src="venthead.swf" quality=high wmode=transparent bgcolor=#FFFFFF  WIDTH="1000" HEIGHT="100%" ID="venthead" NAME="venthead" ALIGN=""');
document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');