このサンプルでは色選択を行う為のカラーピッカーを作成します。
このサンプルの要件は以下の通りです。

  • 選択できる色はWebセーフカラーの216色とする。
  • 動作はクライアントサイド(JavaScript)とする。
  • カラーピッカーはポップアップし、その動作をPopupControlExtenderを利用して実装する。
以上のように書きましたが、私はWebセーフカラーの216色だけを選択できるカラーピッカーが欲しかったのでこのサンプルを作成しました。

以下のアイコンを選択する事によりカラーピッカーが表示されます。

ここでWebセーフカラーについて記述しておきます。
通常のフルカラーはRGBの各色256諧調の組み合わせ(256×256×256=16,777,216色)ですが、WebセーフカラーはRGB各色を6階調(0,51,102,153,204,255)に制限し、この数値を組合わせて作成した216色を示します。
これはブラウザのもつカラーパレットで使用されている為、OSなどの環境の違いによる”色の置き換え”を防ぐことができます。

カラーピッカーの実装方法は以下の手順で行います。
  1. カラーピッカーを表示する為のトリガーとなる領域(今回はここにカラーピッカー用アイコンを表示)をPanelコントロールで定義する。
  2. カラーピッカーで選択された色を表示する領域をPanelコントロールで定義する。
  3. カラーピッカーを作成(表示)する領域を予めPanelコントロールで作成する。
  4. PopupControlExtenderを配置し、PopupControlIDに上記3で定義したPanelコントロールを指定する。
  5. JavaScriptで上記3で定義したPanelの領域にカラー要素を保持したテーブルを動的に作成する。(色選択時のイベントなどもここで定義しておきます。)

カラーピッカー用領域(アイコン用、選択色用、カラーピッカー用)の設定

<table>
     <tr>
         <td>
         <!--カラーピッカーアイコン配置エリア(ここをクリックする事でカラーピッカーがPopUpされます)-->
         <asp:Panel ID="pnlColorIconArea" runat="server"></asp:Panel>
         </td>
         <td>
         <!--カラーピッカーで選択された色を表示するエリア-->
         <asp:Panel ID="pnlSelectedColorArea" runat="server" Height="16px" Width="30px"></asp:Panel>
         </td>
     </tr>
</table>
<!--カラーピッカー表示領域-->
<asp:Panel ID="pnlColorPicker" runat="server" CssClass="colorPickerPanel"></asp:Panel>
<cc1:PopupControlExtender ID="PopupControlExtender1" runat="server"
     BehaviorID ="colorPickerBehavior"
     TargetControlID="pnlColorIconArea"
     PopupControlID="pnlColorPicker"
     Position="Bottom">
</cc1:PopupControlExtender>


カラーピッカーJavaScript(ColorPicker.js)

var ColorPicker = "";
$addHandler(window, 'load', function(){
    ColorPicker = $create(CodeSample.ColorPicker,
                        {"popupBehaviorID":"colorPickerBehavior",
                        "parentIconAreaID":"ctl00_ContentPlaceHolder1_pnlColorIconArea",
                        "selectedAreaID":"ctl00_ContentPlaceHolder1_pnlSelectedColorArea",
                        "paretnAreaID":"ctl00_ContentPlaceHolder1_pnlColorPicker"}, null, null, null);
});
Type.registerNamespace("CodeSample");

CodeSample.ColorPicker = function(){
    CodeSample.ColorPicker.initializeBase(this);
    this._hexlist = null;       //Webカラー用カラーパレット作成用データ
    this._colorPickerTbl = null;//カラーピッカー
    this._parentAreaElm = null; //カラーピッカーが属する親のエレメント
    this._selectAreaElm = null; //カラーピッカーを表示する為のトリガーを定義する対象(アイコン配置対象)エレメント
    this._selectedAreaElm=null; //選択された色を表示する対象エレメント
    this._onSelectHandler=null;
    this._onHoverHander =null;
    this._wFontElm = null;
    this._bFontElm = null;
    this._selectedColor="";
    this._popupBehavior=null;
   
    //property
    this.paretnAreaID="";       //カラーピッカーが属する親のエレメントID
    this.selectedAreaID="";     //選択結果の色を表示するエリアのID
    this.popupBehaviorID="";    //PopupBehaviorID
    this.parentIconAreaID="";   //ColorPicerアイコン表示エリアのID
}

CodeSample.ColorPicker.prototype ={
    initialize:function() {
        CodeSample.ColorPicker.callBaseMethod(this,'initialize');
        this._selectedColor="#000000";//default black
        this._hexlist = new Array("FF","CC","99","66","33","00");
        if(this.paretnAreaID!=""){
            this._parentAreaElm = $get(this.paretnAreaID);
        }
        if(this.selectedAreaID!=""){
            this._selectedAreaElm = $get(this.selectedAreaID);
        }
        //ハンドラーとイベントを定義
        this._onSelectHandler=Function.createDelegate(this, this._onSelect);
        this._onHoverHander =Function.createDelegate(this, this._onHover);
       
        //カラーピッカーを作成
        this._createColorPicker();
       
        //親領域にアイコンを作成
        this._createPickerIcon(this.pickerType);
                                                                                                
        this._popupBehavior = $find(this.popupBehaviorID);
    },
    _onSelect : function(e){
        this._selectedColor = e.target.id;
        if(null!=this._selectedAreaElm){
            this._selectedAreaElm.style.backgroundColor=this._selectedColor;
        }
        this._getPopup().hidePopup();
    },
    getSelectedColor :function(){
        return this._selectedColor;
    },
    setSelectedColor :function(color){
        this._selectedColor = color;
        if(null!=this._selectedAreaElm){
            this._selectedAreaElm.style.backgroundColor=this._selectedColor;
        }
    },
    _getPopup : function(){
        if(null==this._popupBehavior){
            this._popupBehavior = $find(this.popupBehaviorID);
        }
        return this._popupBehavior;
    },
    /**********マウスオーバー時処理****************
    ・選択色エリアの背景色を設定
    ・選択色エリアに色情報(16進数色文字)を設定
    */
    _onHover : function(e){
        var selectID = e.target.id;
        if(null!=this._selectAreaElm){
            this._selectAreaElm.style.backgroundColor=selectID;
            
            if(null==this._wFontElm){
                this._wFontElm = document.createElement("font");
                this._wFontElm.setAttribute("color","#ffffff");
                this._wFontElm.appendChild(document.createTextNode(selectID));
                this._selectAreaElm.appendChild(this._wFontElm);
            }else{
                this._wFontElm.childNodes[0].data = selectID;
            }
            if(null==this._bFontElm){
                this._bFontElm = document.createElement("font");
                this._bFontElm.setAttribute("color","#000000");
                this._bFontElm.appendChild(document.createTextNode("  "+selectID));
                this._selectAreaElm.appendChild(this._bFontElm);
            }else{
                this._bFontElm.childNodes[0].data = "  "+selectID;
            }
        }
    },
    _createColorPicker :function(){
        if(null==this._colorPicker){
            //選択色表示エリアを作成
            this._selectAreaElm = document.createElement("div");
            this._selectAreaElm.className = "colorPickerSelectArea";
       
            //カラーピッカーを作成
            var tmplist = new Array();
            this._colorPickerTbl = document.createElement("table");
            this._colorPickerTbl.className="colorPickerTbl";
            var tblBody = document.createElement("tbody");             
            for(var i=0;i<6;i++){
                var trelm1 = document.createElement("tr");
                var trelm2 = document.createElement("tr");
                for(var j=0;j<6;j++){
                    for(var k=0;k<6;k++){
                        var hexColor = "#"+this._hexlist[i]+this._hexlist[j]+this._hexlist[k];
                        var tdelm = document.createElement("td");
                        tdelm.setAttribute("width","10px");
                        tdelm.setAttribute("height","10px");
                        
                        tdelm.style.backgroundColor=hexColor;
                        tdelm.id=hexColor;
                        $addHandler(tdelm, "click", this._onSelectHandler);
                        $addHandler(tdelm, "mousemove", this._onHoverHander);
                        if(k<3){
                            trelm1.appendChild(tdelm);
                        }else{
                            trelm2.appendChild(tdelm);
                        }
                    }
                }
                tblBody.appendChild(trelm1);
                tmplist.push(trelm2);
            }
            for(i=0;i<tmplist.length;i++){
                tblBody.appendChild(tmplist[i]);
            }
            this._colorPickerTbl.appendChild(tblBody);
            if(null!=this._parentAreaElm){
                this._parentAreaElm.appendChild(this._selectAreaElm);
                this._parentAreaElm.appendChild(this._colorPickerTbl);
            }
        }
    },
    _createPickerIcon :function(){
        if(this.parentIconAreaID!=""){
            
            var elm = document.createElement("img");
            elm.setAttribute("src","../../img/color_swatch.png");
            elm.setAttribute("height","24");
            elm.setAttribute("width","24");
            elm.setAttribute("border","0");
            elm.setAttribute("title","色の選択");
            elm.className="colorPickerIcon";
            
            this._pickerIconElm = elm;
            
            var parentIconAreaElm = $get(this.parentIconAreaID);
            parentIconAreaElm.appendChild(this._pickerIconElm);
            parentIconAreaElm.style.width=24;
            //↑アイコンを配置した親エリアのサイズをアイコン画像と同じサイズに設定
        }
    },
    dispose: function() {
        CodeSample.ColorPicker.callBaseMethod(this, 'dispose');
        if(null!=this._colorPickerTbl){
            var tdlist = this._colorPickerTbl.getElementsByTagName("td");
            for(var i=0;i<tdlist.length;i++){
                //イベントの削除
                $removeHandler(tdlist[i],"click",this._onSelectHandler);
                $removeHandler(tdlist[i],"mousemove",this._onHoverHander);
            }
        }
    }
}

CodeSample.ColorPicker.registerClass('CodeSample.ColorPicker', Sys.Component);
if (typeof(Sys) !== 'undefined')
   Sys.Application.notifyScriptLoaded();

このサンプルで使用したスタイルシートの定義は以下の通りです。

カラーピッカー用スタイルシート定義

/*ColorPicker*/
.colorPickerPanel
{
   position:absolute;    border-style:solid;
   border-width:1px;
   border-color:Black;
   background-color:#ffffff;
   visibility:hidden;
   /*070615追加*/ }
.colorPickerTbl
{
   margin:10px,10px,10px,10px;
}
.colorPickerSelectArea
{
   width:254px;
   height:20px;
}
.colorPickerIcon
{
   cursor:pointer;
}


コメント一覧

Linkz

投稿日時:2008年07月16日 02時00分by Zmrysyou

This is a best site, <a href=" http://sites.google.com/site/analcreampiemovies1/roccos-true-anal-stories "></a>, vvbxln,

Linkz

投稿日時:2008年09月26日 22時48分by c00d10d1 codec

comment6, <a href=" http://ntljiyfdy.justfree.com/102-vlc-codecs-wmv.html ">h 264 codec chip</a>, xsswbh,

bob

投稿日時:2008年10月27日 11時25分by bob

Mcu55s http://www.google.com - best search

bob

投稿日時:2008年10月27日 11時25分by bob

Mcu55s http://www.google.com - best search

ben

投稿日時:2008年10月29日 21時13分by ben

it's nice site <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167713 ">christmas free ringtone verizon</a> piauog <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167748 ">download free nextel phone ringtone</a> 543 <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167901 ">free us cellular ringtone</a> dmg <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167796 ">free nextel ringtone program </a> %OOO <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167807 ">free polyphonic ringtone verizon wireless</a> wuwmum

bred

投稿日時:2008年10月29日 22時38分by bred

i say one thing <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167862 ">free ringtone sprint nextel </a> :-DD <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167753 ">download free ringtones cellphone</a> 80373 <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167900 ">free t mobile music ringtone </a> kdeumv <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167870 ">free ringtone sprint pcs phone</a> 012 <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167813 ">free ringtone maker download </a> 390431

bred

投稿日時:2008年10月30日 00時04分by bred

hello everybody! <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167862 ">free ringtone maker software</a> >:-[ <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167748 ">download free ringtone cellular phone </a> 3172 <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167753 ">download free ringtone tracfone</a> drr <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167881 ">free ringtones alltel phones</a> zzddj <a href=" http://www.vidilife.com/index.cfm?f=profile.main&intUserAccountID=1167807 ">free nokia ringtone sms</a> :-))

mona

投稿日時:2008年10月30日 21時59分by mona

please look at this <a href=" http://xxxblowjob.u.yuku.com/ ">giving dog a blow job</a> aqera <a href=" http://picblowjob.u.yuku.com/ ">blow job lessons</a> 6453 <a href=" http://blowjobfree.u.yuku.com/ ">long deep blow job </a> %-[[[

liza

投稿日時:2008年10月30日 23時15分by liza

it's nice site!!! <a href=" http://blowjobclips.u.yuku.com/ ">milf blow job tits</a> ntnye <a href=" http://teenblowjob.u.yuku.com/ ">naked blow job videos</a> =-[[[ <a href=" http://xxxblowjob.u.yuku.com/ ">blow job tease and denial hypnotic </a> 80002

john

投稿日時:2008年10月31日 02時01分by john

hay <a href=" http://blowjobclips.u.yuku.com/ ">milf blow job</a> >:OO <a href=" http://blowjobteen.u.yuku.com/ ">blow job milf</a> mjz <a href=" http://pixblowjob.u.yuku.com/ ">hot blow job movies</a> =[[

john

投稿日時:2008年10月31日 03時20分by john

hay <a href=" http://blowjobpix.u.yuku.com/ ">i cant believe i gave him a blow job </a> 77641 <a href=" http://blowjobpic.u.yuku.com/ ">two girls blow job</a> perk <a href=" http://picsblowjob.u.yuku.com/ ">amatuer blow job porn</a> 8)))

kris

投稿日時:2008年10月31日 04時36分by kris

i say one thing <a href=" http://clipsblowjob.u.yuku.com/ ">mature blow job</a> 1918 <a href=" http://blowjobxxxa.u.yuku.com/ ">free blow job video</a> 01974 <a href=" http://blowjobfree.u.yuku.com/ ">free blow job clips </a> 31646

joseph

投稿日時:2008年10月31日 05時42分by joseph

please look at this <a href=" http://blowjobvids.u.yuku.com/ ">blow job tease and denial hypnotic mistress</a> 097154 <a href=" http://pixblowjob.u.yuku.com/ ">video of public blow job</a> zgeskq <a href=" http://teenblowjob.u.yuku.com/ ">boat blow job </a> 068

mona

投稿日時:2008年10月31日 08時07分by mona

please look at this <a href=" http://kimblowjob.u.yuku.com/ ">do woman like blow job</a> 8O <a href=" http://blowjobpix.u.yuku.com/ ">blow job and cumming down throat</a> yeb <a href=" http://blowjobfree.u.yuku.com/ ">home made blow job videospreteen blow job </a> =((

kate

投稿日時:2008年10月31日 09時22分by kate

hay <a href=" http://vidsblowjob.u.yuku.com/ ">free blow job stories </a> =( <a href=" http://teenblowjob.u.yuku.com/ ">record blow job</a> lcpq <a href=" http://blowjobfree.u.yuku.com/ ">worlds best blow job </a> %((

kate

投稿日時:2008年10月31日 09時22分by kate

hay <a href=" http://vidsblowjob.u.yuku.com/ ">free blow job stories </a> =( <a href=" http://teenblowjob.u.yuku.com/ ">record blow job</a> lcpq <a href=" http://blowjobfree.u.yuku.com/ ">worlds best blow job </a> %((

ben

投稿日時:2008年11月01日 17時02分by ben

it's nice site <a href=" http://swimringtones.vidiLife.com ">cell phone ring tone</a> 8P <a href=" http://radioringtones.vidiLife.com ">ringtones for cell phone</a> jnqnq

mona

投稿日時:2008年11月01日 20時22分by mona

it's nice site!!! <a href=" http://realringtone.vidiLife.com ">silent ringtone</a> =-) <a href=" http://kissringtones.vidiLife.com ">ringtones for </a> =[[[

john

投稿日時:2008年11月03日 20時38分by john

good post man thx <a href=" http://tramadolhcl.newgrounds.com/news/post/217958 ">buy tramadol</a> ohsu

mona

投稿日時:2008年11月03日 23時10分by mona

cool post dude <a href=" http://www.soundclick.com/members/default.cfm?member=tramadolhcl ">no prescription saturday delivery tramadol</a> %[[[

joseph

投稿日時:2008年11月04日 21時00分by joseph

good work man <a href=" http://my.mashable.com/viagrapills ">buy viagra online </a> 3715 <a href=" http://my.mashable.com/prozacpills ">buy prozac</a> =[ <a href=" http://my.mashable.com/klonopinpills ">buy klonopin</a> exphc <a href=" http://my.mashable.com/levitrapills ">order levitra</a> bjn

jenna

投稿日時:2008年11月05日 00時04分by jenna

it's nice site!!! <a href=" http://my.mashable.com/adipexpills ">adipex</a> jyhu <a href=" http://my.mashable.com/levitrapills ">buy levitra online </a> %((( <a href=" http://my.mashable.com/celexapills ">celexa no prescription</a> 862 <a href=" http://my.mashable.com/phenterminepills ">phentermine addiction </a> %D

mona

投稿日時:2008年11月05日 02時44分by mona

hi nice site thx <a href=" http://my.mashable.com/levitrapills ">levitra online</a> 328519 <a href=" http://my.mashable.com/butalbitalpills ">butalbital addiction </a> 286 <a href=" http://my.mashable.com/hydrocodonepills ">order hydrocodone</a> :P <a href=" http://my.mashable.com/ephedrinepills ">ephedrine products </a> =-))

joseph

投稿日時:2008年11月05日 05時18分by joseph

please look at this <a href=" http://my.mashable.com/vicodinpills ">vicodin online</a> 31578 <a href=" http://my.mashable.com/fluoxetinepills ">fluoxetine addiction </a> >:OOO <a href=" http://my.mashable.com/ultrampills ">ultram pills</a> =-[[[ <a href=" http://my.mashable.com/propeciapills ">propecia</a> zeuhks

joseph

投稿日時:2008年11月05日 05時18分by joseph

please look at this <a href=" http://my.mashable.com/vicodinpills ">vicodin online</a> 31578 <a href=" http://my.mashable.com/fluoxetinepills ">fluoxetine addiction </a> >:OOO <a href=" http://my.mashable.com/ultrampills ">ultram pills</a> =-[[[ <a href=" http://my.mashable.com/propeciapills ">propecia</a> zeuhks

kris

投稿日時:2008年11月05日 10時12分by kris

i say one thing <a href=" http://my.mashable.com/celebrexpills ">celebrex</a> :-DDD <a href=" http://my.mashable.com/klonopinpills ">klonopin online</a> 345597

bob

投稿日時:2008年11月05日 10時31分by bob

nice site dude <a href=" http://my.mashable.com/thyroidpills ">generic thyroid</a> >:]]] <a href=" http://my.mashable.com/celexapills ">celexa online</a> :-OO <a href=" http://my.mashable.com/fioricetpills ">buy fioricet online </a> >:] <a href=" http://my.mashable.com/ephedrinepills ">buy ephedrine online </a> :D

mona

投稿日時:2008年11月05日 12時51分by mona

good site dude <a href=" http://my.mashable.com/tramadolpills ">tramadol addiction </a> %))) <a href=" http://my.mashable.com/carisoprodolpills ">cheapest carisoprodol </a> 9642 <a href=" http://my.mashable.com/effexorpills ">effexor addiction</a> 582 <a href=" http://my.mashable.com/zolpidempills ">zolpidem online</a> :-OOO <a href=" http://my.mashable.com/fioricetpills ">cheapest fioricet </a> 11018

jenna

投稿日時:2008年11月05日 20時52分by jenna

it's nice site <a href=" http://my.mashable.com/tramadolpills ">tramadol no prescription</a> 491765 <a href=" http://my.mashable.com/phendimetrazinepills ">purchase phendimetrazine </a> 8) <a href=" http://my.mashable.com/effexorpills ">cheap effexor</a> %(( <a href=" http://my.mashable.com/ativanpills ">ativan pills</a> 55823

kate

投稿日時:2008年11月06日 00時04分by kate

i say one thing <a href=" http://my.mashable.com/klonopinpills ">klonopin no prescription</a> hcdaxs <a href=" http://my.mashable.com/ativanpills ">ativan</a> 2026 <a href=" http://my.mashable.com/ultrampills ">ultram no prescription</a> ltrvg <a href=" http://my.mashable.com/nolvadexpills ">nolvadex addiction </a> %OO

kate

投稿日時:2008年11月06日 00時04分by kate

i say one thing <a href=" http://my.mashable.com/klonopinpills ">klonopin no prescription</a> hcdaxs <a href=" http://my.mashable.com/ativanpills ">ativan</a> 2026 <a href=" http://my.mashable.com/ultrampills ">ultram no prescription</a> ltrvg <a href=" http://my.mashable.com/nolvadexpills ">nolvadex addiction </a> %OO

joseph

投稿日時:2008年11月06日 00時13分by joseph

cool site man <a href=" http://my.mashable.com/lorazepampills ">cheap lorazepam</a> 280 <a href=" http://my.mashable.com/cialispills ">cialis online</a> %O <a href=" http://my.mashable.com/alprazolampills ">buy alprazolam</a> bhknwx <a href=" http://my.mashable.com/meridiapills ">diet meridia</a> 128

adult

投稿日時:2008年11月06日 03時09分by adult

cool post dude <a href=" http://my.mashable.com/adipexpills ">adipex online</a> %(( <a href=" http://my.mashable.com/zoloftpills ">zoloft</a> 356699 <a href=" http://my.mashable.com/lipitorpills ">lipitor online</a> mhyop

bred

投稿日時:2008年11月06日 05時52分by bred

it's nice site!!! <a href=" http://my.mashable.com/ambienpills ">buy ambien online </a> =]]] <a href=" http://my.mashable.com/fluoxetinepills ">cheapest fluoxetine </a> 8O <a href=" http://my.mashable.com/meridiapills ">meridia no prescription</a> =-)) <a href=" http://my.mashable.com/zithromaxpills ">cheapest zithromax </a> khq

lola

投稿日時:2008年11月06日 08時33分by lola

it's nice site <a href=" http://my.mashable.com/thyroidpills ">order thyroid</a> 04019 <a href=" http://my.mashable.com/ativanpills ">cheapest ativan </a> 48046 <a href=" http://my.mashable.com/codeinepills ">cheapest codeine </a> 727 <a href=" http://my.mashable.com/diazepampills ">buy diazepam</a> :-((

sylvia

投稿日時:2008年11月06日 08時52分by sylvia

cool post dude <a href=" http://my.mashable.com/vicodinpills ">order vicodin</a> 2117 <a href=" http://my.mashable.com/fluoxetinepills ">fluoxetine online</a> :[[[ <a href=" http://my.mashable.com/ultrampills ">purchase ultram </a> qbp <a href=" http://my.mashable.com/phenterminepills ">generic phentermine</a> eqbzsz

jenna

投稿日時:2008年11月06日 11時12分by jenna

i say one thing <a href=" http://my.mashable.com/viagrapills ">free viagra </a> 8[[ <a href=" http://my.mashable.com/ambienpills ">ambien discount </a> 8OO <a href=" http://my.mashable.com/fioricetpills ">fioricet addiction </a> =[[ <a href=" http://my.mashable.com/zolpidempills ">zolpidem addiction </a> >:))

liza

投稿日時:2008年11月06日 11時37分by liza

bookmark you thx <a href=" http://my.mashable.com/ambienpills ">ambien addiction </a> dhwscg <a href=" http://my.mashable.com/ativanpills ">ativan online</a> :-( <a href=" http://my.mashable.com/fioricetpills ">fioricet online</a> :-] <a href=" http://my.mashable.com/diazepampills ">diazepam online</a> rkfqr

liza

投稿日時:2008年11月06日 16時36分by liza

hay <a href=" http://my.mashable.com/valiumpills ">buy valium online </a> 814 <a href=" http://my.mashable.com/nexiumpills ">buy nexium online </a> 6062 <a href=" http://my.mashable.com/codeinepills ">codeine</a> 879226 <a href=" http://my.mashable.com/paxilpills ">order paxil</a> =O

jenna

投稿日時:2008年11月06日 22時37分by jenna

i say one thing <a href=" http://my.mashable.com/butalbitalpills ">buy butalbital</a> 0587 <a href=" http://my.mashable.com/somapills ">cheapest soma </a> hbyqb <a href=" http://my.mashable.com/nolvadexpills ">generic nolvadex</a> xmlhv <a href=" http://my.mashable.com/ephedrinepills ">ephedrine addiction </a> qhlmyo

kris

投稿日時:2008年11月06日 23時06分by kris

interesting site man <a href=" http://my.mashable.com/xanaxpills ">purchase xanax </a> yci <a href=" http://my.mashable.com/valiumpills ">valium no prescription</a> mgqy <a href=" http://my.mashable.com/paxilpills ">buy paxil online </a> oikdio <a href=" http://my.mashable.com/propeciapills ">order propecia</a> szw

bred

投稿日時:2008年11月07日 01時23分by bred

it's nice site <a href=" http://my.mashable.com/lipitorpills ">lipitor addiction </a> mwt <a href=" http://my.mashable.com/phenterminepills ">buy phentermine online </a> :-( <a href=" http://my.mashable.com/clonazepampills ">purchase clonazepam </a> cgonte

arni

投稿日時:2008年11月07日 02時11分by arni

interesting post thx <a href=" http://my.mashable.com/vicodinpills ">cheap vicodin</a> akxfn <a href=" http://my.mashable.com/ambienpills ">cheapest ambien </a> 4886 <a href=" http://my.mashable.com/effexorpills ">buy effexor online </a> =-OO <a href=" http://my.mashable.com/somapills ">soma online</a> uqjgpf

lola

投稿日時:2008年11月07日 04時08分by lola

it's nice site <a href=" http://my.mashable.com/xanaxpills ">xanax</a> 8-DDD <a href=" http://my.mashable.com/phendimetrazinepills ">phendimetrazine addiction </a> 85803 <a href=" http://my.mashable.com/zithromaxpills ">generic zithromax</a> 8-O <a href=" http://my.mashable.com/diazepampills ">diazepam no prescription</a> bonawz

bob

投稿日時:2008年11月07日 05時03分by bob

great work man thx <a href=" http://my.mashable.com/prozacpills ">order prozac</a> 547434 <a href=" http://my.mashable.com/lorazepampills ">buy lorazepam</a> rzwthi <a href=" http://my.mashable.com/ambienpills ">ambien online</a> >:-) <a href=" http://my.mashable.com/nexiumpills ">purchase nexium </a> :-PPP <a href=" http://my.mashable.com/propeciapills ">propecia online</a> dcf

arni

投稿日時:2008年11月07日 07時42分by arni

sweet site thx <a href=" http://picsteenxl.u.yuku.com/ ">young teens getting fucked</a> =-OO <a href=" http://freevidsxl.u.yuku.com/ ">nude teen</a> 8-( <a href=" http://picsfreexl.u.yuku.com/ ">lesbian sites for teens</a> 5379 <a href=" http://teenpicsxl.u.yuku.com/ ">teens fucking sucking free porn</a> pyek

jenna

投稿日時:2008年11月07日 12時54分by jenna

good post man thx <a href=" http://teenxlpics.u.yuku.com/ ">ameture teen dvds</a> 834883 <a href=" http://picsxlteens.u.yuku.com/ ">teen eat pussy</a> 09264 <a href=" http://picsteensxl.u.yuku.com/ ">preteengirls sucking cock</a> 1404

jenna

投稿日時:2008年11月07日 15時07分by jenna

please look at this <a href=" http://vidsteenxl.u.yuku.com/ ">tiffany teen</a> ebjoc <a href=" http://freevidsxl.u.yuku.com/ ">teenmodels</a> %)) <a href=" http://teenxlpics.u.yuku.com/ ">tightteenpussy</a> bog <a href=" http://vidsfreexl.u.yuku.com/ ">teenpics </a> 617903

sylvia

投稿日時:2008年11月07日 18時05分by sylvia

hello everybody! <a href=" http://vidsteenxxl.u.yuku.com/ ">nude preteen models</a> >:DD <a href=" http://vidsfreexl.u.yuku.com/ ">preteen nude photos</a> 8-]]] <a href=" http://vidsfreexxl.u.yuku.com/ ">preteen porn </a> 44430 <a href=" http://freexlpics.u.yuku.com/ ">bbc teens</a> >:P <a href=" http://teenpicsxl.u.yuku.com/ ">tyny teens fucked</a> 1558

joseph

投稿日時:2008年11月07日 22時08分by joseph

hi great site 10x <a href=" http://freevidsxl.u.yuku.com/ ">teen tits</a> aoj <a href=" http://teenspicsxl.u.yuku.com/ ">teen blowjob clips galleries movies</a> xttlwp <a href=" http://freepicsxl.u.yuku.com/ ">wet uncut gay teen</a> :PPP <a href=" http://teensxlpics.u.yuku.com/ ">free youngest teen porn pic</a> 6959 <a href=" http://picsxlteen.u.yuku.com/ ">hung cruiser teen boys</a> %))

kris

投稿日時:2008年11月08日 00時15分by kris

it's nice site <a href=" http://vidsteenxxl.u.yuku.com/ ">teensluts</a> =] <a href=" http://picsteensxl.u.yuku.com/ ">smoking teen fetish</a> :-))) <a href=" http://teenpicsxl.u.yuku.com/ ">teenagers get fucked </a> swyfv <a href=" http://picsxlteen.u.yuku.com/ ">nude teen gallery</a> uqys

james

投稿日時:2008年11月11日 09時36分by james

it's nice site!!! <a href=" http://tramadolhcl1.vidiLife.com ">tramadol hcl</a> 081 <a href=" http://www.soundclick.com/members/default.cfm?member=tramadolovernight ">buy tramadol cheap </a> %] <a href=" http://my.mashable.com/adipexpu ">where can i buy adipex without a prescription</a> 285

joseph

投稿日時:2008年11月11日 12時13分by joseph

please look at this <a href=" http://my.mashable.com/adipexps ">adipex no prescription fed ex</a> hniry <a href=" http://www.soundclick.com/members/default.cfm?member=tramadolhcl ">order tramadol</a> 018 <a href=" http://www.soundclick.com/members/default.cfm?member=fibromyalgiatramadol ">tramadol c o d </a> hiqs <a href=" http://tramadolwithdraw.vidiLife.com ">tramadol withdraw</a> 278

john

投稿日時:2008年11月11日 15時35分by john

cool site man <a href=" http://my.mashable.com/adipexpi ">90 adipex p</a> >:-DD <a href=" http://tramadolwithdraw.newgrounds.com ">why is tramadol not a narcotic</a> 711 <a href=" http://my.mashable.com/adipexpa ">adipex on line prescription </a> =PPP <a href=" http://my.mashable.com/adipexpw ">purchase adipex</a> %)))

john

投稿日時:2008年11月11日 15時35分by john

cool site man <a href=" http://my.mashable.com/adipexpi ">90 adipex p</a> >:-DD <a href=" http://tramadolwithdraw.newgrounds.com ">why is tramadol not a narcotic</a> 711 <a href=" http://my.mashable.com/adipexpa ">adipex on line prescription </a> =PPP <a href=" http://my.mashable.com/adipexpw ">purchase adipex</a> %)))

arni

投稿日時:2008年11月11日 18時07分by arni

it's nice site!!! <a href=" http://my.mashable.com/adipexps ">adipex inorgasmic</a> 791483 <a href=" http://tramadolforcats.vidiLife.com ">what does tramadol do</a> 720424 <a href=" http://tramadolwithdraw.vidiLife.com ">list of strongest generic tramadol</a> :PPP

adult

投稿日時:2008年11月11日 21時23分by adult

hello everybody! <a href=" http://caninetramadol.newgrounds.com/news/post/222640 ">no prescription tramadol</a> 663552 <a href=" http://my.mashable.com/adipexpe ">np prescription adipex</a> 878423 <a href=" http://my.mashable.com/adipexpp ">adipex fed ex</a> =-PPP <a href=" http://my.mashable.com/adipexpw ">adipex story</a> 30223

james

投稿日時:2008年11月11日 22時04分by james

nice work man 10x <a href=" http://my.mashable.com/adipexpy ">adipex overnight shipping</a> anjwun <a href=" http://www.soundclick.com/members/default.cfm?member=fibromyalgia ">side effects on tramadoll in dogs </a> 1217 <a href=" http://my.mashable.com/adipexpt ">buy adipex no prescription </a> :PP <a href=" http://my.mashable.com/adipexpr ">adipex p diet pills</a> :-]]

james

投稿日時:2008年11月11日 22時04分by james

nice work man 10x <a href=" http://my.mashable.com/adipexpy ">adipex overnight shipping</a> anjwun <a href=" http://www.soundclick.com/members/default.cfm?member=fibromyalgia ">side effects on tramadoll in dogs </a> 1217 <a href=" http://my.mashable.com/adipexpt ">buy adipex no prescription </a> :PP <a href=" http://my.mashable.com/adipexpr ">adipex p diet pills</a> :-]]

buy acomplia online

投稿日時:2008年11月11日 23時24分by buy acomplia online

comment1, cialis, inftz, buy tramadol, ivlfr, buy cialis, %[[, buy tramadol, qiz,

adult

投稿日時:2008年11月12日 04時25分by adult

interesting post thx <a href=" http://my.mashable.com/adipexpo ">adipex and your heart </a> sao <a href=" http://www.soundclick.com/members/default.cfm?member=caninetramadol ">what is tramadol hcl 50</a> 824 <a href=" http://tramadolovernight.newgrounds.com ">cheap tramadol without prescription</a> >:] <a href=" http://www.soundclick.com/members/default.cfm?member=fibromyalgiatramadol ">no prescription next day delivery tramadol </a> %]]]

john

投稿日時:2008年11月12日 06時22分by john

please look at this <a href=" http://tramadolwithdraw.newgrounds.com ">list of strongest generic tramadol</a> 94699 <a href=" http://my.mashable.com/adipexpe ">diet adipex weight loss</a> 628 <a href=" http://my.mashable.com/adipexpq ">adipex pills</a> 491 <a href=" http://my.mashable.com/adipexpu ">pharmacy online weight loss adipex online consultation</a> 8-D

bjvuufm

投稿日時:2008年11月12日 08時34分by bjvuufm

OXnYgE <a href="http://rqvupvhhmakq.com/">rqvupvhhmakq</a>, [url=http://hvdkstugasud.com/]hvdkstugasud[/url], [link=http://uifwfcjzbhpu.com/]uifwfcjzbhpu[/link], http://cptnjwrgpelp.com/

buy acomplia online

投稿日時:2008年11月12日 09時11分by buy acomplia online

comment4, buy acomplia, >:))), buy cialis, qjqjmx, tramadol, :]]], buy phentermine online, %-OO,

kris

投稿日時:2008年11月12日 10時02分by kris

hi nice site thx <a href=" http://my.mashable.com/adipexpy ">adipet</a> jxhcry <a href=" http://my.mashable.com/adipexpi ">adipex without perscription</a> 39523 <a href=" http://my.mashable.com/adipexps ">ordering adipex in missouri </a> 770 <a href=" http://my.mashable.com/adipexpu ">adipex online weight loss pill</a> %-PP

acomplia

投稿日時:2008年11月12日 16時54分by acomplia

comment2, rimonabant, 9759, cialis, 8[, rimonabant, 6715,

sylvia

投稿日時:2008年11月12日 17時51分by sylvia

hello everybody! <a href=" http://my.mashable.com/adipexpe ">side affects of adipex</a> 881647 <a href=" http://tramadolovernight.newgrounds.com ">what is the medical tramadol</a> oxcwtu <a href=" http://www.soundclick.com/members/default.cfm?member=tramadolovernight ">stronger than tramadol </a> 9782 <a href=" http://my.mashable.com/adipexpa ">adipex harmful side effects</a> %-[[

Generic Valium

投稿日時:2008年11月13日 01時47分by Generic Valium

Good job., Cheapest Cialis, %O, viagra, 63033, Ambien, pkm, Cheapest Cialis, =-(((, Zolpidem, 5173,

Phentermine

投稿日時:2008年11月13日 01時56分by Phentermine

Your Site Is Great!, Buy Alprazolam, 9914, Buy Diazepam, =), Valium , %], Tramadol , xlpc, Ultram, 199,

bob

投稿日時:2008年11月13日 02時08分by bob

hi nice site thx <a href=" http://my.mashable.com/adipexpy ">adipex diet pills without prescription</a> jcbkga <a href=" http://tramadolovernight.vidiLife.com ">tramadol hcl dosage</a> awcchc <a href=" http://my.mashable.com/adipexpp ">buy brand adipex</a> dpfexd <a href=" http://my.mashable.com/adipexpa ">adipex overnight no prescription</a> ldoux

bob

投稿日時:2008年11月13日 02時08分by bob

hi nice site thx <a href=" http://my.mashable.com/adipexpy ">adipex diet pills without prescription</a> jcbkga <a href=" http://tramadolovernight.vidiLife.com ">tramadol hcl dosage</a> awcchc <a href=" http://my.mashable.com/adipexpp ">buy brand adipex</a> dpfexd <a href=" http://my.mashable.com/adipexpa ">adipex overnight no prescription</a> ldoux

bob

投稿日時:2008年11月13日 02時09分by bob

hi nice site thx <a href=" http://my.mashable.com/adipexpy ">adipex diet pills without prescription</a> jcbkga <a href=" http://tramadolovernight.vidiLife.com ">tramadol hcl dosage</a> awcchc <a href=" http://my.mashable.com/adipexpp ">buy brand adipex</a> dpfexd <a href=" http://my.mashable.com/adipexpa ">adipex overnight no prescription</a> ldoux

Xanax

投稿日時:2008年11月13日 02時27分by Xanax

Thank You!, Tramadol, dtnhg, Ambien , :-]], Adipex, %-OOO, Xanax, :-), Buy Adipex, =-PP,

tramadol

投稿日時:2008年11月13日 02時32分by tramadol

comment5, buy acomplia, 454, rimonabant, gdmw, buy viagra online, 935941,

Phentermine

投稿日時:2008年11月13日 02時41分by Phentermine

Good job., Generic Phentermine , 8(((, Alprazolam, =P, Order Cialis , vdfbl, Buy Diazepam, 0071, viagra, 594,

Alprazolam

投稿日時:2008年11月13日 03時27分by Alprazolam

Thank You!, Xanax, 519937, Viagra , 291046, Buy Cialis Online, =-OO, Buy Valium, %OO, Cheap viagra, =OO,

Cialis

投稿日時:2008年11月13日 03時43分by Cialis

I like your work!, Buy Cialis, 8]]], Buy Ambien, %-OO, Xanax, :-D, Buy Xanax, dfr, Phentermine, 9469,

jenna

投稿日時:2008年11月13日 03時55分by jenna

please look at this <a href=" http://my.mashable.com/adipexpy ">buy adipex sale 119 weight loss prescription</a> :[[[ <a href=" http://fibromyalgia.vidiLife.com ">tramadol cod</a> 388381 <a href=" http://caninetramadol.newgrounds.com/news/post/222640 ">about tramadol </a> 499 <a href=" http://my.mashable.com/adipexpt ">informationadipex</a> >:]

Diazepam

投稿日時:2008年11月13日 03時58分by Diazepam

Good job., Buy Diazepam, dfifl, Buy Xanax, 8-[[[, Cheap viagra, eiol, Diazepam, >:-DD, Buy Cialis Online, =DD,

Buy Phentermine

投稿日時:2008年11月13日 04時28分by Buy Phentermine

I like your work!, Phentermine, =OOO, Buy Adipex, :(, Cheap viagra, 8-O, Tramadol , 832, Ambien , lde,

Xanax

投稿日時:2008年11月13日 04時39分by Xanax

Good job., Phentermine online , 170765, Cialis, 8-[, Ambien, =-((, Order Tramadol , 8-(, Cheap Phentermine, 8568,

Ultram

投稿日時:2008年11月13日