		function open_window(uRL) {
			var window_height = 50, window_width = 300;
			var win = window.open(uRL, "wINDOW","toolbar=no, width="+window_width+", height="+window_height+" ,status=no, scrollbars=no, resizable=no, menubar=no");
		}

		function ld(theurl) {
			document.getElementById("url").href = theurl;
			document.getElementById("url").click();
		}
		function resizeSWF(nHeight) {
			 if (parseInt(navigator.appVersion)>3) {
                            if (navigator.appName=="Netscape") {
                                 winW = window.innerWidth;
                                 winH = window.innerHeight;
                                 }
                             if (navigator.appName.indexOf("Microsoft")!=-1) {
                                winW = document.body.offsetWidth;
                                winH = document.body.offsetHeight;
                             }
                          }

                    //    document.title = 'SBC 2   ||   ' + nHeight+ ' || ' + winH;
                        nHeightPX = nHeight + "px";
                        winHPX = (winH-5) + "px";

            if (nHeight>winH) {
			   document.getElementById("loader").style.height = nHeightPX;
			 }
			else
			  {
			    document.getElementById("loader").style.height = origh;
			  }

		}
