About this Entry
Posted by: CZmeeting

Visit CZmeeting's Xanga Site

Original: 9/17/2007 2:48 AM
Views: 17
Comments: 0
eProps: 0

Read Comments
Post a Comment
Back to Your Xanga Site


Monday, September 17, 2007

 

2006.4.21 西貢BBQ

活動 : BBQ

 

 

http://good-times.webshots.com/album/560057593piZtiy?start=0  << 內有更多相片 請內進觀看

 Posted 9/17/2007 2:48 AM - 17 Views - 0 eProps - 0 comments

Give eProps or Post a Comment

Choose Identity
(?)
 
Give eProps (?)
Post a Comment
Add Link | Preview HTML comment help 
Profile Pic:
Default  |  Choose »  (?)



Back to CZmeeting's Xanga Site!
Note: your comment will appear in CZmeeting's local time zone:
GMT -05:00 (Eastern Standard - US, Canada)
<xml> <!-- smiley script below --> <script type="text/javascript"> // // *** Smiley Script V 3.0 *** // Original author: EasterEgg (http://www.xanga.com/easteregg) // // You can use this code freely, as long as the entire script remains // intact, including the copyright notice. // // Many thanks to Alice Woodrome (http://www.xanga.com/Alice), who handpicked // the emoticons that are currently present in this version of the script. // // VERSION HISTORY // // 1.0 (February 11, 2003) // - initial release // // 2.0 (May 12, 2003) // - cross browser: it runs in IE, Netscape, Mozilla and Opera // - ready for the upcoming (beta tested) changes at Xanga // - clickable smileys, even for non-IE users, displayed in buttons // - customizable number of smileys displayed in one row // - customizable smiley button size // - easily adjustable: only two arrays to maintain // // 2.1 (May 12, 2003) // - preloading images for faster performance // - XP Bugfix // // 2.2 (May 17, 2003) // - necessary adjustments made because of recent changes at Xanga // - made suitable for Mac users! // - runs only at the comment page for increased performance // // 3.0 (Nov 5, 2005) // - script was broken, due to changes at Xanga. Fixed. // - script overall revised, some obsolete code removed. // // HOW TO USE: // For use at Xanga only. Copy this entire code (including the script tags) // and paste in the Website Stats box at your Look and Feel page. Make sure // the previous version of this script (if any) is completely removed first. // // The script contains two arrays: "textSmileys" and "realSmileys". The items // present in the array "textSmileys" will be automatically replaced with the // corresponding images in the array "realSmileys". You can modify the arrays // as you see fit, as long as both arrays keep the exact same number of items. // // For example, suppose you want to add some smiley to the script... that would mean // in "textSmileys" you would add a shorthand like ":some_smiley:" or {somesmiley}, // and in "realSmileys" you would add it's url: "http://www.dude.com/some_smiley.gif". // // SETTINGS: // - "maxNumberOfSmileysPerRow": number of smileys that will be displayed in one row. // Smileys above that number will automatically be added to a new line. 10 by default. // - "buttonSize": size of the smiley buttons in pixels. 30 px by default. // // AVAILABILITY: // The script has been tested in the latest versions of IE, Netscape, // Mozilla and Opera (Windows 98). // function typeSmiley(sSmiley) { if (document.getElementsByTagName('textarea')[0].getAttribute('name') == 'bdescr') var editor = document.getElementsByTagName('textarea')[0]; else { var allTextAreas = document.getElementsByTagName('textarea'); for (i = 0; i < allTextAreas.length; ++i) { if (allTextAreas.getAttribute('name') == 'bdescr') { var editor = allTextAreas; break; } } } editor.value = editor.value + sSmiley; } function replaceTextSmileys() { // ***add textual emoticons to the array below var textSmileys = new Array( ":)", ":(", ":wink:", ":p", ":lol:", ":mad:", ":heartbeat:", ":love:", ":eprop:", ":wave:", ":sunny:", ":wha:", ":yes:", ":sleepy:", ":rolleyes:", ":lookaround:", ":eek:", ":confused:", ":nono:", ":fun:", ":goodjob:", ":giggle:", ":cry:", ":shysmile:", ":jealous:", ":whocares:", ":spinning:", ":coolman:", ":littlekiss:", ":laugh:"); // *** add the url's from the corresponding images below var realSmileys = new Array( "http://www.xanga.com/Images/smiley1.gif", "http://www.xanga.com/Images/smiley2.gif", "http://i.xanga.com/Alice/AliceSmileyAnimatedWink.gif", "http://www.xanga.com/Images/smiley4.gif", "http://i.xanga.com/Alice/Smileylol.gif", "http://i.xanga.com/Alice/7_mad.gif", "http://i.xanga.com/Alice/heartbeating.gif", "http://i.xanga.com/Alice/SmileLove.gif", "http://i.xanga.com/Alice/eProp.gif", "http://i.xanga.com/Alice/SmileyWave.gif", "http://i.xanga.com/Alice/sunnySmiley.gif", "http://i.xanga.com/Alice/wha.gif", "http://i.xanga.com/Alice/yes.gif", "http://i.xanga.com/Alice/Smileysleep.gif", "http://i.xanga.com/Alice/Smileyrolleyes.gif", "http://i.xanga.com/Alice/SmileyLookaround.gif", "http://i.xanga.com/Alice/Smileyeek.gif", "http://i.xanga.com/Alice/Smileyconfused.gif", "http://i.xanga.com/Alice/SmileyAnimatedNoNo.gif", "http://i.xanga.com/Alice/propeller.gif", "http://i.xanga.com/Alice/goodjob.gif", "http://i.xanga.com/Alice/emot-giggle.gif", "http://i.xanga.com/Alice/blueAnimatedCry.gif", "http://i.xanga.com/Alice/Animatedshysmile.gif", "http://i.xanga.com/Alice/AliceJealous.gif", "http://i.xanga.com/Alice/19_indifferent.gif", "http://i.xanga.com/Alice/Smileyspinning.gif", "http://i.xanga.com/Alice/25_coolguy.gif", "http://i.xanga.com/Alice/AliceSmileyAnimatedBlinkKiss.gif", "http://i.xanga.com/Alice/LaughingAgua.gif"); // *** number of smileys that will be displayed per row var maxNumberOfSmileysPerRow = 10; // *** button size in pixels var buttonSize = 30; // preloading images var preloadedImages = new Array(realSmileys.length); for (i = 0; i < preloadedImages.length; ++i) { preloadedImages = new Image(); preloadedImages.src = realSmileys; } var allTableData = document.getElementsByTagName('td'); var indx; var smiley; var replacement; for (var i = 0 ; i < allTableData.length ; ++i ) { for ( var n = 0 ; n < textSmileys.length; ++n ) { if ((allTableData.innerHTML.toUpperCase().indexOf('TABLE') == -1) && (allTableData.innerHTML.indexOf('previewHTML()') == -1)) { indx = allTableData.innerHTML.indexOf(textSmileys[n]); if (indx != -1) { while (indx != -1) { replacement = ''; indx = allTableData.innerHTML.indexOf(textSmileys[n]); smiley = '<img src=\"' + realSmileys[n] + '">' replacement = allTableData.innerHTML.replace(textSmileys[n],smiley); allTableData.innerHTML = replacement; } } } } } if (document.getElementById('idSmileyBar')) { var smileyCollection = new Array(realSmileys.length); var smileyBar = ''; if (document.getElementById('htmleditor')) { for (i = 0; i < smileyCollection.length; ++i) { smileyCollecti + 'style="width:' + buttonSize + 'px; height:' + buttonSize + 'px;" onclick="javascript:insertHTML(\' ' + textSmileys + '\'); return false;">' + '<img src=\"' + realSmileys + '" alt="' + textSmileys + '"></button>'; } } else { for (i = 0; i < smileyCollection.length; ++i) { smileyCollecti + 'style="width:' + buttonSize + 'px; height:' + buttonSize + 'px;" onclick="javascript:typeSmiley(\' ' + textSmileys + '\'); return false;">' + '<img src=\"' + realSmileys + '" alt="' + textSmileys + '"></button>'; } } for (i = 0; i < smileyCollection.length; ++i) { if (i != 0) if ( (i/maxNumberOfSmileysPerRow).toString().indexOf('.') == -1) smileyBar = smileyBar + '<BR>'; smileyBar = smileyBar + smileyCollection; } // add SmileyBar infoLink = '<a href="http://www.alicewoodrome.com/smileyscript.html"' + 'target=blank><font style="font-size: xx-small; font-weight: normal;">' + 'Smiley Script</font><a/><br><br>'; smileyBarHtml = '<br><b>Add Emoticons</b><br><font style="font-size: xx-small">' + 'Simply add emoticons to your comments by clicking them!</font> ' + infoLink + smileyBar + '<br><br>'; obj2 = document.getElementById('idSmileyBar'); obj2.innerHTML = smileyBarHtml; } } if (document.getElementById('idSmileyBar')) replaceTextSmileys(); </script> <!-- smiley script above --></td></tr></table><br /><!-- Start Quantcast tag --> <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script> <script type="text/javascript"> _qacct="p-87h-iNOVooym2";quantserve();</script> <noscript> <img src="http://pixel.quantserve.com/pixel/p-87h-iNOVooym2.gif" style="display: none" height="1" width="1" alt="Quantcast"/></noscript> <!-- End Quantcast tag --> <table border="0" cellspacing="0" cellpadding="4" width="725" class="footer"><tr><td align="center" valign="top"><a href="http://www.xanga.com/default.aspx" class="footernav">xanga</a> - <a href="http://www.xanga.com/private/home.aspx" class="footernav">your site</a> - <a href="http://help.xanga.com/about/termsofuse.htm" class="footernav">terms</a> - <a href="http://help.xanga.com/about/privacypolicy.htm" class="footernav">privacy</a> - <a href="http://jobs.xanga.com" class="footernav">jobs</a> - <a href="http://help.xanga.com" class="footernav">help</a> - <a href="http://press.xanga.com" class="footernav">press</a> - <a href="http://www.xanga.com/register.aspx" class="footernav">join</a> - <a href="http://www.xanga.com/language.aspx?returnurl=http%3a%2f%2fczmeeting.xanga.com%2fitem.aspx%3fuser%3dczmeeting%26tab%3dweblogs%26uid%3d616415409" class="footernav" title="Change Language">Language</a></td></tr></table><table border="0" cellspacing="0" cellpadding="0" width="725" class="footer"><tr><td align="center" valign="top"><a href="http://safety.xanga.com" class="footernav">safety</a> - <a href=" http://safety.xanga.com/category/parents/" class="footernav">parents</a> - <a href="http://safety.xanga.com/category/lawenforcement/" class="footernav">law enforcement</a></td></tr></table><table border="0" cellspacing="0" cellpadding="4" width="725" class="footer"><tr><td align="center" valign="top"><a href="http://www.xanga.com/ReportContent.aspx" class="footernav">report inappropriate content</a></td></tr></table> </center> </div> <!-- start HoverPanel Contents --> <div style="display:none;"> <iframe id="x-signinframe" src="http://www.xanga.com/loading.htm" allowtransparency="true" frameborder="0" scrolling="no"></iframe> <iframe id="x-miniframe" src="/loading.htm" allowtransparency="true" frameborder="0" scrolling="no"></iframe> <iframe id="x-subscribeframe" src="/loading.htm" allowtransparency="true" frameborder="0" scrolling="no"></iframe> </div> <!-- end HoverPanel Contents --> <!-- start HoverPanels --> <div id="x-hovpanel-bg" style="display: none;"></div> <div id="x-hovpanel-signinjoin" class="x-hovpanel" style="display: none;"> <h2 class="x-hovpanel-title"><span>Welcome to Xanga!</span></h2> <div id="x-hovpanel-signinjoin-contents"> </div> <ul class="x-hovpanel-toolbar"> <li><a href="javascript:closeHovPanel('x-hovpanel-signinjoin');" class="x-close">close</a></li> </ul> <script type="text/javascript"> <!-- attachHovPanel("x-signinframe", "x-hovpanel-signinjoin"); //--> </script> </div> <div id="x-hovpanel-subscribe" class="x-hovpanel" style="display: none;"> <h2 class="x-hovpanel-title"><span>Stay connected!</span></h2> <div id="x-hovpanel-subscribe-contents"> </div> <ul class="x-hovpanel-toolbar"> <li><a href="javascript:closeHovPanel('x-hovpanel-subscribe');" class="x-close">close</a></li> </ul> <script type="text/javascript"> <!-- attachHovPanel("x-subscribeframe", "x-hovpanel-subscribe"); //--> </script> </div> <div id="x-hovpanel-chooseminis" class="x-hovpanel" style="display: none;"> <h2 class="x-hovpanel-title"><span>Say it with Minis!</span></h2> <div id="x-hovpanel-chooseminis-contents"> </div> <ul class="x-hovpanel-toolbar"> <li><a href="javascript:closeHovPanel('x-hovpanel-chooseminis');" class="x-close">close</a></li> </ul> <script type="text/javascript"> <!-- attachHovPanel("x-miniframe", "x-hovpanel-chooseminis"); //--> </script> </div> <!-- end HoverPanels --> <script type="text/javascript"> <!-- if (isMacXFF()) { repairFlash(); } //--> </script> <script type="text/javascript" src="http://s.xanga.com/scripts/culture/xangawebstrings.js"></script> <script type="text/javascript"> <!-- function XangaReplacePageTextValue(obj, text) { if (obj) { obj.value=text; } } function XangaReplacePageTextOption(obj, index, text) { if (obj) { obj.options[index].innerHTML=text; } } XangaReplacePageTextOption(document.getElementById("searchop"),1, xangawebstringsResx.Photos_lower); XangaReplacePageTextOption(document.getElementById("searchop"),2, xangawebstringsResx.Videos_lower); XangaReplacePageTextOption(document.getElementById("searchop"),3, xangawebstringsResx.Blogrings_lower); XangaReplacePageTextOption(document.getElementById("searchop"),4, xangawebstringsResx.Metros_lower); XangaReplacePageTextOption(document.getElementById("searchop"),5, xangawebstringsResx.Profiles_lower); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),0, xangawebstringsResx.Jan); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),1, xangawebstringsResx.Feb); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),2, xangawebstringsResx.Mar); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),3, xangawebstringsResx.Apr); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),4, xangawebstringsResx.May); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),5, xangawebstringsResx.Jun); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),6, xangawebstringsResx.Jul); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),7, xangawebstringsResx.Aug); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),8, xangawebstringsResx.Sep); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),9, xangawebstringsResx.Oct); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),10, xangawebstringsResx.Nov); XangaReplacePageTextOption(document.getElementById("PostCalendar_ddlMonth"),11, xangawebstringsResx.Dec); if (document.getElementById("xeps1")) { document.getElementById("xeps1").title = xangawebstringsResx.NumberEprops.replace("{0}", "2") + "!"; document.getElementById("xeps2").title = xangawebstringsResx.NumberEprops.replace("{0}", "2") + "!"; document.getElementById("xeps3").title = xangawebstringsResx.NumberEprop.replace("{0}", "1") + "!"; document.getElementById("xeps4").title = xangawebstringsResx.NumberEprops.replace("{0}", "0") + "!"; } XangaReplacePageTextValue(document.getElementById("btnSubmit"), xangawebstringsResx.Submit); XangaReplacePageTextValue(document.getElementById("searchsubmit"), xangawebstringsResx.Search + " \u00bb"); //--> </script> <!-- Start Quantcast tag --> <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script> <script type="text/javascript"> _qacct="p-87h-iNOVooym2";quantserve();</script> <noscript> <img src="http://pixel.quantserve.com/pixel/p-87h-iNOVooym2.gif" style="display: none" height="1" width="1" alt="Quantcast"/></noscript> <!-- End Quantcast tag --> <div style="height: 0; overflow: hidden;" > <!-- Site Meter --> <script type="text/javascript" src="http://jsx.sitemeter.com/counter.js?site=52f9e4be251faf9333a1cd87d983f332&pid=sxg"></script> <noscript> <img src="http://trx.sitemeter.com/meter.asp?site=52f9e4be251faf9333a1cd87d983f332&pid=sxg" alt="Site Meter"/> <img src="http://dgx.specificclick.net/" alt="Site Meter"/> </noscript> <!-- Copyright (c)2007 Site Meter --> </div> <script type="text/javascript" src="http://www.google-analytics.com/ga.js"></script> <script type="text/javascript"> (function(){ function track(trackerCode){ var tracker = _gat._getTracker(trackerCode); tracker._setDomainName("xanga.com"); tracker._initData(); tracker._trackPageview(); } track('UA-1651690-1'); })(); </script> </body> </html>