function SwfPointA(obj,width,height,theight)
        {
            var focus_width=width;
            var focus_height=height;
            var text_height=theight;
            var swf_height = focus_height+text_height;	       
            
            var pics="";
            var links="";
            var texts="";
            
            var nsPoint = document.getElementById(obj);
            for (var i=0;i<nsPoint.rows.length;i++)
            {
                var nsTitle =   nsPoint.rows[i].cells[0].innerText;
                var nsImg   =   typeof(nsPoint.rows[i].cells[1].getElementsByTagName("img")[0]) == "undefined" ? "undefined" :nsPoint.rows[i].cells[1].getElementsByTagName("img")[0].src;
                var nsUrl   =   typeof(nsPoint.rows[i].cells[2].getElementsByTagName("a")[0]) == "undefined" ? "undefined" :nsPoint.rows[i].cells[2].getElementsByTagName("a")[0].href;
                texts += "|" + nsTitle;
                links += "|" + nsUrl;
                pics += "|" + nsImg;
            }        
            if (pics != "") pics = pics.substring(1);
            if (links != "") links = links.substring(1);
            if (texts != "") texts = texts.substring(1);        
            document.write('<object ID="focus_flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
            document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="playswfnewA.swf"><param name="quality" value="high"><param name="bgcolor" value="#FFFFFF">');
            document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
            document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
            document.write('<embed ID="focus_flash" src="playswfnewA.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#C5C5C5" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
            document.write('</object>');
        }


function SwfPointB(obj,width,height)
        {
            function addInfo(title,photourl,link)
            {
	            if(varText!=""){
		            varText+="|||";
	            }
	            varText+=title+"|_|"+photourl+"|_|"+link;
            }
            
            var varText = "";
            var w = width;
            var h = height;
            
            var nsPoint = document.getElementById(obj);
            for (var i=0;i<nsPoint.rows.length;i++)
            {
                var nsTitle =   nsPoint.rows[i].cells[0].innerText;
                var nsImg   =   typeof(nsPoint.rows[i].cells[1].getElementsByTagName("img")[0]) == "undefined" ? "undefined" :nsPoint.rows[i].cells[1].getElementsByTagName("img")[0].src;
                var nsUrl   =   typeof(nsPoint.rows[i].cells[2].getElementsByTagName("a")[0]) == "undefined" ? "undefined" :nsPoint.rows[i].cells[2].getElementsByTagName("a")[0].href;
                addInfo(nsTitle,nsUrl,nsUrl);    
            }             
           

            document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cabversion=6,0,0,0" width="' + w + '" height="' + h + '" id="01" align="middle">');
            document.write('<param name="allowScriptAccess" value="sameDomain" />');
            document.write('<param name="movie" value="playswfnewB.swf?info='+varText+'" />');
            document.write('<param name="quality" value="high" />');
            document.write('<param name="bgcolor" value="ffffff" /><param name="wmode" value="transparent" />');
            document.write('<embed src="playswfnewB.swf" quality="high" bgcolor="ffffff" width="'+ w +'" height="' + h + '" name="01" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
            document.write('</object>');
        }