	function openWin(html, name, width, height, scroll) {
		if (width == '') {
			var width = 350;
		}
		if (height == '') {
			var height = 650;
		}
		myWin = window.open(html, name, 'status=no,width=' + width + ',height=' + height + ',scrollbars=' + scroll + ',resizable=yes,toolbar=no');
    }
    function openMenuWin(html, name, width, height, scroll) {
    	if (width == '')
			var width = 350;
		if (height == '')
			var height = 650;
		myWin = window.open(html, name, 'status=no,width=' + width + ',height=' + height + ',scrollbars=' + scroll + ',resizable=yes,toolbar=no,menubar=yes');
    }
    function openFilmWin(path) {
		window.open(path, "filmWin", "status=no,height=500,width=400,left=30,top=120,resizable=yes,scrollbars=yes");
	}
	function openFooterWin(url,name,height,width) {
		popupWin = window.open(url, name, "width="+width+",height="+height+",status=no,menubar=no,scrollbars=yes,resizable=yes");
		if (window.focus) {
			popupWin.focus();
		}
	}
	function openFooterWinGetTCM(url,name,height,width) {
		popupWin = window.open(url, name, "width="+width+",height="+height+",status=no,menubar=no,scrollbars=no,resizable=no, screenX=	30,screenY=0,top=0,left=30");
		if (window.focus) {
			popupWin.focus();
		}
	}

	