﻿	var flashMainObj;
	var flashMainObj_OriginalHeight;
	var htmlTemplate;
	
	window.onload = function() {
		flashMainObj = swfobject.getObjectById('flashMain');
		flashMainObj_OriginalHeight = flashMainObj.height
		flashMainObj_ClosedHeight = 45;
		htmlTemplate = document.body.className.indexOf("htmlTemplate");
		if(htmlTemplate >= 0){
			setFlashHeight("close");
		}

	};
	  
    function setFlashHeight(Switch) {
		if(flashMainObj && htmlTemplate >= 0) {
			if(Switch == "close") {
				flashMainObj.height = flashMainObj_ClosedHeight;
			    if(isIE() && (typeof showSelect == 'function')) {
				  showSelect();
				}
				
			} else if(Switch == "open") {
				flashMainObj.height = flashMainObj_OriginalHeight; 
				if(isIE() && (typeof hideSelect == 'function')) {
				  hideSelect();
				}
			}
		}
    }
	
	function isIE() {
		return /MSIE/.test(navigator.userAgent);
	}
	
	
	function dispatchEvent(id){
		id = "#link_"+id;
		alert(id);
		$(id).trigger("click");
	}
