[ Mesaje noi · Membrii · Regulamentului forumului · Cautare · RSS ]
meniu misto
dj-kappaData: Vineri, 02-Oct-2009, 18:51:28 | Mesaj # 1
Generalisim
Grup: V.I.P
Mesaje: 102
Premii: 5
Reputaţie: 5
Status: Offline
Code

<style type="text/css">
.dot         { position: absolute; width: 6; height: 6; visibility: hidden; background-color: red; font-size: 1px; cursor: pointer; cursor: hand; z-index: 100 }
.dotoff      { position: absolute; width: 6; height: 6; visibility: hidden; background-color: gray; font-size: 1px; cursor:default; z-index: 100}
.dotempty    { position: absolute; width: 6; height: 6; visibility: hidden; background-color: orange; font-size: 1px; cursor: pointer; cursor: hand; zindex: 100 }
.caption     { position: absolute; visibility: hidden; font-family: Tahoma; color: black;    
                  font-size: 11px; text-align: Center; cursor: default; z-index:    
                  1 }

body     { margin: 0px; background-color: white; }
a      { color: silver; text-decoration: none }
p      { font-size: 10px; font-family: tahoma; color: black }    
</style>
<script language="JavaScript" type="text/javascript">

function lib_bwcheck(){ //Browsercheck (needed)
    this.ver=navigator.appVersion
    this.agent=navigator.userAgent
    this.dom=document.getElementById?1:0
    this.opera5=this.agen t.in dexOf("Opera 5")>-1
    this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0;    
    this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
    this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
    this.ie=this.ie4||this.ie5||this.ie6
    this.mac=this.agent.indexOf("Mac")>-1
    this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;    
    this.ns4=(document.layers && !this.dom)?1:0;
    this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5)
    return this
}
var bw=new lib_bwcheck()

// The code of this script is in the body, the browsercheck above is not used.

</script>

</head>
<body bgcolor="#737994" text="#FFFFFF" link="#FFFFFF" topmargin="0" leftmargin="0">

<script language="javascript1.2" type="text/javascript">
<!--
// DotMenu
// provides cross-browser functionality
//======================================
function getObjectRef(name) {
     if(document.getElementById) return document.getElementById(name);
     else if(document.all) return document.all[name];
     else return null;
}

// general functions to assist the script
//========================================
function show(name) {
     var el = getObjectRef(name);
     if(el) el.style.visibility = "visible";
}
function hide(name) {
     var el = getObjectRef(name);
     if(el) el.style.visibility = "hidden";
}
function getWidth(name) {
     var el = getObjectRef(name);
     return el.offsetWidth;
}
function getHeight(name) {
     var el = getObjectRef(name);
     return el.offsetHeight;
}
function moveMe(name,x,y) {
     var el = getObjectRef(name);
     if(el) { el.style.top = parseInt(y); el.style.left = parseInt(x); }     
}
function moveBy(name,x,y) {
     var el = getObjectRef(name);
     if(el) { el.style.top = parseInt(el.style.top) + parseInt(y); el.style.left = parseInt(el.style.left) + parseInt(x); }     
}

// Creates the menu objects
//==========================
var menuCount = 0;
function menuObject(name,x,y,caption, r, parent) {
     if ( (!document.getElementById&&!document.all) || navigator.userAgent.indexOf("Opera")>-1) return;
     document.write('<div id="divDot' + menuCount + '" class="dotempty" style="top: ' + y + '; left: ' + x + '"></div>');
     document.write('<div id="divCap' + menuCount + '" class="caption" style="top: 0; left: 0">' + caption + '</div>');
        
     this.name = name;
     this.parent = parent
     this.ref = "divDot" + menuCount;
     this.caption = "divCap" + menuCount
     if(r) this.radius = r;
     else this.radius = 400;
     this.subMenus = new Array();
     this.state = 0;
     this.moving = false;
     if(this.parent) this.action = "null";
     else this.action = "toggle";
     if(this.parent) this.startAngle = parent.startAngle;
     else this.startAngle = 0;

     getObjectRef(this.ref).objRef = this.name;
        
     this.show = function() { show(this.ref); }
     this.hide = function() { hide(this.ref); }
     this.moveMe = function(x,y) { if(this.parent) { x += this.parent.x(); y += this.parent.y(); } moveMe(this.ref,x,y); }
     this.moveBy = function(x,y) { moveBy(this.ref,x,y); }
     this.x = function() { return parseInt(getObjectRef(this.ref).style.left); }
     this.y = function() { return parseInt(getObjectRef(this.ref).style.top); }
     this.w = function() { return getWidth(this.ref); }
     this.h = function() { return getHeight(this.ref); }

     this.showCaption = function() {
       moveMe(this.caption, this.x() - (getWidth(this.caption)/2) + (this.w()/2), (this.y() + this.h()));
       show(this.caption);
     }
     this.hideCaption = function() {
       hide(this.caption);
     }
     this.setCaption = function(c) { getObjectRef(this.caption).innerHTML = c;}
       
     this.addItem = function(c,action,r) {
       getObjectRef(this.ref).className = "dot";
       if(!r) r = this.radius/2;
       var sub = new menuObject(this.name + ".subMenus[" + this.subMenus.length + "]",0,0,c,r,this);
       sub.parent = this;
       sub.action = action;
       sub.moveMe(0,0);
       this.subMenus[this.subMenus.length] = sub;
       return sub;
     }
        
     this.expand = function() {
       if(this.subMenus.length > 0) {
         var p = true;
         if(this.parent) {
           p = !this.parent.moving;
           for(var i=0; i<this.parent.subMenus.length;i++)
             p = p && ((this.parent.subMenus[i].state==0) || (this.parent.subMenus[i].state==this.parent.subMenus[i].subMenus.length)) && (this.parent.subMenus[i].moving==false);
         } else var o = false;
            

         if((!this.parent || this.parent.state == this.parent.subMenus.length) && p) {
           if(this.parent) this.collapseAll(this.name);
              
           var diff = 360 / this.subMenus.length;
           for(var i=0;i<this.subMenus.length;i++){
             this.subMenus[i].moveMe(0,0);
             this.subMenus[i].show();
             this.moving = true;
             this.subMenus[i].slide(this.subMenus[i].radius * cos(degToRad((diff*i)+this.startAngle)), this.subMenus[i].radius * sin(degToRad((diff*i)+this.startAngle)), this.name + ".subMenus[" + i + "].showCaption();" + this.name + ".moving=false;" + this.name + ".state+=1;");
           }
           if(this.parent){
             getObjectRef(this.parent.ref).style.filter = "alpha (opacity=33)";
             getObjectRef(this.parent.ref).style.MozOpacity = "33%";

             getObjectRef(this.parent.ref).className = "dotoff";
             getObjectRef(this.parent.caption).style.filter = "alpha (opacity=33)";
             getObjectRef(this.parent.caption).style.MozOpacity = "33%";
             for(i=0;i<this.parent.subMenus.length;i++) {
                 getObjectRef(this.parent.subMenus[i].ref).style.filter = "alpha (opacity=66)";
                 getObjectRef(this.parent.subMenus[i].ref).style.MozOpacity = "66%";
                 getObjectRef(this.parent.subMenus[i].caption).style.filter = "alpha (opacity=66)";
                 getObjectRef(this.parent.subMenus[i].caption).style.MozOpacity = "66%";           
             }
             if(this.parent.parent) {
               for(i=0;i<this.parent.parent.subMenus.length;i++) {
                 getObjectRef(this.parent.parent.subMenus[i].ref).style.filter = "alpha (opacity=33)";
                 getObjectRef(this.parent.parent.subMenus[i].ref).style.MozOpacity = "33%";
                 getObjectRef(this.parent.parent.subMenus[i].ref).className = "dotoff";
                 getObjectRef(this.parent.parent.subMenus[i].caption).style.filter = "alpha (opacity=33)";           
                 getObjectRef(this.parent.parent.subMenus[i].caption).style.MozOpacity = "33%";
               }
               getObjectRef(this.parent.parent.ref).style.MozOpacity = "33%";
               getObjectRef(this.parent.parent.ref).style.MozOpacity = "33%";
               getObjectRef(this.parent.parent.ref).className = "dotoff";
             }
           }
           getObjectRef(this.ref).style.filter = "alpha (opacity=66)";
           getObjectRef(this.caption).style.filter = "alpha (opacity=66)";     
           getObjectRef(this.ref).style.MozOpacity = "66%";
           getObjectRef(this.caption).style.MozOpacity = "66%";    
         }
       }     
     }

     this.collapse = function() {
       var p = true;
       p = !this.moving;
       for(var i=0; i<this.subMenus.length;i++)
         p = p && (this.subMenus[i].state==0)  && (this.subMenus[i].moving==false);
          
       if(p && this.subMenus.length > 0) {
         for(var i=0;i<this.subMenus.length;i++){
           this.subMenus[i].hideCaption();
           this.moving = true;
           this.subMenus[i].slide(0, 0, this.name + ".subMenus[" + i + "].hide();" + this.name + ".moving=false;" + this.name + ".state-=1;");
         }
         if(this.parent){
           getObjectRef(this.parent.ref).style.filter = "alpha (opacity=66)";
           getObjectRef(this.parent.ref).style.MozOpacity = "66%";
           if(this.parent.subMenus.length != 0)
             getObjectRef(this.parent.ref).className = "dot";
           else
             getObjectRef(this.parent.ref).className = "dotempty";
           getObjectRef(this.parent.caption).style.filter = "alpha (opacity=66)";
           getObjectRef(this.parent.caption).style.MozOpacity = "66%";
           for(i=0;i<this.parent.subMenus.length;i++) {
             getObjectRef(this.parent.subMenus[i].ref).style.filter = "alpha (opacity=100)";
             getObjectRef(this.parent.subMenus[i].ref).style.MozOpacity = "100%";
             if(this.parent.subMenus[i].subMenus.length != 0)    
               getObjectRef(this.parent.subMenus[i].ref).className = "dot";
             else
               getObjectRef(this.parent.subMenus[i].ref).className = "dotempty";
             getObjectRef(this.parent.subMenus[i].caption).style.filter = "alpha (opacity=100)";           
             getObjectRef(this.parent.subMenus[i].caption).style.MozOpacity = "100%";
           }
           if(this.parent.parent) {
             for(i=0;i<this.parent.parent.subMenus.length;i++) {
               getObjectRef(this.parent.parent.subMenus[i].ref).style.filter = "alpha (opacity=66)";
               getObjectRef(this.parent.parent.subMenus[i].ref).style.MozOpacity = "66%";
               if(this.parent.parent.subMenus[i].subMenus.length != 0)
                 getObjectRef(this.parent.parent.subMenus[i].ref).className = "dot";
               else
                 getObjectRef(this.parent.parent.subMenus[i].ref).className = "dotempty";
               getObjectRef(this.parent.parent.subMenus[i].caption).style.filter = "alpha (opacity=66)";           
               getObjectRef(this.parent.parent.subMenus[i].caption).style.MozOpacity = "66%";
             }
           }
         }
         getObjectRef(this.ref).style.filter = "alpha (opacity=100)";
         getObjectRef(this.caption).style.filter = "alpha (opacity=100)";          
         getObjectRef(this.ref).style.MozOpacity = "100%";
         getObjectRef(this.caption).style.MozOpacity = "100%";
       }
     }

     this.collapseAll = function(except) {
       for(var i=0;i<this.parent.subMenus.length;i++) {
         if(this.parent.subMenus[i].name!=except && this.parent.subMenus[i].state==this.parent.subMenus[i].subMenus.length) {
           this.parent.subMenus[i].collapse();
         }       
       }
     }
        
     this.toggle = function(e) {
       if(document.all) id = window.event.srcElement;
       else id = e.target;
       var dot = eval(id.objRef);
          
       if(dot.state==0 && !dot.moving) dot.expand();
       else if(dot.state==dot.subMenus.length && !dot.moving) dot.collapse()
     }
        
     this.doAction = function(e) {
       if(document.all) id = window.event.srcElement;
       else id = e.target;
       var dot = eval(id.objRef);
          
       if(dot.action == "toggle") dot.toggle(e);
       else eval(dot.action);
     }
        
     //change these if you want to change the events that trigger the actions
     //========================================================================
     //getObjectRef(this.ref).onmousemove = this.toggle;
     getObjectRef(this.ref).onmouseup = this.doAction;
        
     this.slide = function(xx,yy,func) {
       if(!func) func = "";
       var px = this.parent.x();
       var py = this.parent.y();
          
       var x = xx - this.x() + px;
       var y = yy - this.y() + py;
          
       var d = sqrt(square(xx-this.x() + px) + square(yy-this.y() + py));
          
       var v = d/8;
       if(v<1) v = 1;
              
       if( (Math.abs(x) < v) && (Math.abs(y) < v) ) {
         moveMe(this.ref,xx + px,yy + py);         
         if(func != "") eval(func);
       } else {       
         var a = round(atan(x,y));
         dx = round(v * cos(degToRad(a)));
         dy = round(v * sin(degToRad(a)));
         
         this.moveBy(dx,dy);
         setTimeout(this.name + ".slide(" + xx + "," + yy + ", '" + func + "');",10);       
       }
     }
     // Preoading the windows filters.
     if (menuCount==0 && document.all) document.all[this.ref].style.filter = "alpha (opacity=100)";
     menuCount++;
     return this;
}

// Math functions
//================
var pi = Math.PI;
function square(x) { return (x*x); }
function sqrt(x) { return Math.sqrt(x); }
function round(x) { return Math.round(x); }
function rand(x,y) { return (round(Math.random()*(y-x)) + x); }

function cos(x) { return Math.cos(x) }
function sin(x) { return Math.sin(x) }
       
function degToRad(x) { return ( x/(360/(2*pi)) ); }
function radToDeg(x) { return ( x*(360/(2*pi)) ); }

function atan(s,t) {
     if( s == 0.0 && t > 0.0)
       angle = 90.0;
     else if(s == 0.0 && t < 0.0)    
       angle = 270.0;
     else if (s < 0.0 )    
       angle = 180.0 + radToDeg(Math.atan(t/s));
     else if (s > 0.0 && t < 0.0)
       angle = 360.0 + radToDeg(Math.atan(t/s));
     else {
       if(s==0.0) s=0.00001;
       angle = radToDeg(Math.atan(t/s));
     }
     if(angle < 0.0) angle += 360.0;
     return angle;
}

//====================================================================================
// make the menus and provide information on usage
//====================================================================================
//
// In order to customise your menus all you need to do is:
//   - edit the styles .dot, .dotoff and .caption
//   - add the main menu using the following code
//         var [menu_name] = new menuObject("[menu_name]", [x position], [y position], [caption], [spacing between sub menus]);
//   - add the subemus using:
//         var [sub_menu] = [menu_name].addItem([caption],[action],[spacing]);
//       OR
//         var [sub-sub_menu] = [sub_menu].addItem([caption],[action],[spacing]);
//       OR
//         [menu_name].subMenus[x].addItem([caption],[action],[spacing]);
//
//       - where action is string that get's evaluated when the dot is clicked
//
//       (NOTE the spacing is optional and if left blank gets inherited
//             and is equal to the  (parent's value)/2 - the default for
//             the main menu item uis 400)
//
//   - the following allow extra manipulation of the menus:
//          + menuItem.show()              - show's the menu's dot
//          + menuItem.showCaption()       - show's the menu's caption
//          + menuItem.hide()
//          + menuItem.hideCaption()
//          + menuItem.startAngle = x      - default is 0-degrees which means the first submenu appears
//                    directly to the right, the following items are traced in a
//                    clockwise direction
//          + menuItem.setCaption("text")  - allows you to change a menus caption
//          + menuItem.expand()            - opens a menus submenus (if they exist)
//          + menuItem.collapse()          - closes a menu's subItems (unless one of them is open)
//
//          + menuItem.moveMe(x,y)         - moves a menu to coordinates (x,y)
//          + menuItem.moveBy(x,y)         - moves a menu by (x,y)-pixels
//          + menuItem.x() & menuItem.y()  - retrieve a menus coordinates
//
//====================================================================================

//get dimentions of the page
if(document.all) pageWidth = document.body.offsetWidth-20;
else pageWidth = innerWidth;
if(document.all) pageHeight = document.body.offsetHeight-4;
else pageHeight = innerHeight;

//Create main menu
var menu = new menuObject("menu",pageWidth/2,pageHeight/2,"DhtmlCentral Site Map",pageHeight/2);
menu.startAngle = -90;

//show menu and caption
menu.show();
menu.showCaption();

//Add submenus
menu.addItem("news","window.open('/news')");
menu.addItem("scripts","toggle");
menu.addItem("tutorials","toggle");
menu.addItem("forums","toggle");
menu.addItem("resources","toggle");

menu.subMenus[1].addItem("FoldOutMenu","window.open('/script/script22.asp')");
menu.subMenus[1].addItem("Loading Bar","window.open('/script/script17.asp')");
menu.subMenus[1].addItem("Window Script","window.open('/script/script16.asp')");
menu.subMenus[1].addItem("PageSlideFade","window.open('/script/script15.asp')");
menu.subMenus[1].addItem("Circle Menu","window.open('/script/script14.asp')");
menu.subMenus[1].addItem("Annimation Intro","window.open('/script/script9.asp')");
menu.subMenus[1].addItem("NewsSlideFade","window.open('/script/script10.asp')");
menu.subMenus[1].addItem("Other Scripts","window.open('/script/')");

menu.subMenus[2].addItem("Scripting for vs5 browsers","window.open('/tutorials/tutorial5.asp')");
menu.subMenus[2].addItem("Makeing a Dhtml Script","window.open('/tutorials/tutorial6.asp')");
menu.subMenus[2].addItem("Filters & Transitions","window.open('/tutorials/tutorial4.asp')");
menu.subMenus[2].addItem("Dhtml Library","window.open('/tutorials/tutorial3.asp')");
menu.subMenus[2].addItem("Document Size","window.open('/tutorials/tutorial2.asp')");
menu.subMenus[2].addItem("Dhtml Intro","window.open('/tutorials/tutorial1.asp')");

menu.subMenus[3].addItem("Forum listings","window.open('/forums')");
menu.subMenus[3].addItem("Cool Sites","window.open('/forums/forum.asp?FORUM_ID=1&CAT_ID=1&Forum_Title=Cool+sites')");
menu.subMenus[3].addItem("CoolMenus","window.open('/forums/forum.asp?FORUM_ID=2&CAT_ID=1&Forum_Title=CoolMenus')");
menu.subMenus[3].addItem("Cross Browser","window.open('/forums/forum.asp?FORUM_ID=3&CAT_ID=1&Forum_Title=Crossbrowser+DHTML')");
menu.subMenus[3].addItem("Scripts","window.open('/forums/forum.asp?FORUM_ID=4&CAT_ID=1&Forum_Title=DHTML+Scripts')");
menu.subMenus[3].addItem("General","window.open('/forums/forum.asp?FORUM_ID=6&CAT_ID=1&Forum_Title=General+DHTML+issues')");
menu.subMenus[3].addItem("Off-Topic","window.open('/forums/forum.asp?FORUM_ID=9&CAT_ID=1&Forum_Title=Off%2Dtopic')");

c = menu.subMenus[4].addItem("Cool Sites","toggle");
c.startAngle = 15;
menu.subMenus[4].addItem("Portals","window.open('/resources/default.asp?catid=7&cattitle=Portals')");
menu.subMenus[4].addItem("Script Sites","window.open('/resources/default.asp?catid=1&cattitle=Script+sites')");
menu.subMenus[4].addItem("Tutorials &<br>References","toggle");

menu.subMenus[4].subMenus[0].addItem("Comercial Sites","window.open('/resources/default.asp?catid=5&cattitle=Commercial+sites')");
menu.subMenus[4].subMenus[0].addItem("Personal Sites","window.open('/resources/default.asp?catid=6&cattitle=Personal+sites')");
menu.subMenus[4].subMenus[0].addItem("Experimental Projects","window.open('/resources/default.asp?catid=4&cattitle=Experimental+projects')");

menu.subMenus[4].subMenus[3].addItem("References","window.open('/resources/default.asp?catid=8&cattitle=References')");
menu.subMenus[4].subMenus[3].addItem("Tutorials & Articles","window.open('/resources/default.asp?catid=9&cattitle=Tutorials+and+Articles')");

//--></script>


Oare chiar trag iarba? Nu,nu trag,fumez!De ce? Ia ghici!
 
mitiData: Marţi, 10-Noi-2009, 15:52:52 | Mesaj # 2
General-maior
Grup: Membri
Mesaje: 5
Premii: 3
Reputaţie: 0
Status: Offline
cul al pun?
 
asd10cristiData: Marţi, 10-Noi-2009, 17:25:04 | Mesaj # 3
Sergent
Grup: V.I.P
Mesaje: 30
Premii: 0
Reputaţie: 0
Status: Offline
man pune si tu poze
 
LiveHDTVsData: Joi, 06-Oct-2011, 15:25:47 | Mesaj # 4
Grup: Prieteni





In today’s tough economic feel, most households are venomous rear wherever they can. And with chain and aide telly costing anywhere from $65- $150 a month (more if you compute premium movie channels) tons people are making their idiot box sets the foremost part of their homes to bring back the axe. But what if there was a approach to relish in thousands of boob tube channels, including firm to discover global shows and sports programming, and on no account pay out another monthly rope nib again?


Accept to Aide-de-camp Direct- the coming of television.

<b><a href=http://www.live-tv-show.com/>watch family guy online for free</a></b> and <b><a href=http://live-tv-show.com/>watch gossip girl free online</a></b>

With no pledge services or monthly bills, no arms to put, and 24/7 immense access, is it any wonder that Internet Media Periodical hailed Lieutenant Mail as “unequivocally the unsurpassed TV to PC software on the structure”? Don’t be fooled nigh other so called “Big Deals” on attendant goggle-box servicing in place of your PC that give you only restrictive access to channels, or be enduring dozens of unseen fees that intent up costing you more than your prevalent cable service.

For the benefit of less than the value of a given month’s price wire or right-hand man maintenance, you can enjoy a lifetime of television- once more 3,500 channels!- from the convenience of your laptop or desktop. And ignore the hassles of waiting for introduction, or hours on suppress with the mooring company. Installing Lieutenant Manage is as lenient as 1, 2, 3.

1. Register - Response a not many plain questions, and our easy registration arrangement will process your A MAN EXPERIENCE payment. That’s claim, no monthly bills- ever.

2. Download - Follow the easy, on screen instructions to download our software. No tools to put, no gear to buy.

3. Attend to and Dig - Meet abet and enjoy thousands of tube channels, from soaps and sports to movies and dramas, any time, day or night.

With crystal clear picture and lucid quality, superior patron advice, and a lifetime of tv exchange for less than you’d benefit after honourable one month of rope air force, Attendant Head up is the beat character to move the most as a replacement for your TV dollar.
 
MimiVevestinsData: Sâmbătă, 17-Dec-2011, 15:57:55 | Mesaj # 5
Grup: Prieteni





Yes, all can be
vagon1.ru
 
ClurivyemerieData: Marţi, 03-Ian-2012, 14:47:09 | Mesaj # 6
Grup: Prieteni





спасибо за интересную информацию
 
NatashazonData: Vineri, 20-Ian-2012, 11:09:25 | Mesaj # 7
Grup: Prieteni





Где скачать бесплатно XRumer 7.0.10 ELITE??
Дайте мне , пожалуйста URL!!!
 
lerafuxseData: Miercuri, 01-Feb-2012, 17:08:18 | Mesaj # 8
Grup: Prieteni





Магазин обуви: женская обувь большая полнота Liska (Лиска), женская обувь в перми Liska (Лиска), skechers женская обувь Liska (Лиска), вечерняя женская обувь Liska (Лиска), женская обувь zara Liska (Лиска).
 
leradresseData: Sâmbătă, 18-Feb-2012, 07:15:03 | Mesaj # 9
Grup: Prieteni





Здравствуйте. Покажите прошу. Где-же взять как отрегулировать железную дверь Лекс?

С уважением, Павел данилов.
 
Sepi-JusddData: Duminică, 04-Mar-2012, 03:20:52 | Mesaj # 10
Grup: Prieteni






Welcome to PerfectVPN .com - The BeST of VPN Gui !

OPENVPN is a free and open source software application that implements virtual private network (VPN) solutions for creating secure point-to-point or site-to-site connections in routed or bridged configurations and remote access facilities. It uses SSL/TLS security for encryption and is capable of traversing network address translators (NATs) and firewalls.
http://perfectvpn.com/
 
xrumerseeData: Luni, 12-Mar-2012, 17:01:52 | Mesaj # 11
Grup: Prieteni





Мы предлагаем: xrumer 2.9 xrumer 2.5 crack, xrumers ru, ломаный xrumer, торрент xrumer, xrumer 7.0. Программа XRumer (взломанный xrumer) - предназначена для массовой рассылки в форумы, гостевые книги, блоги, доски, каталоги и т. д.
 
LypsuppyRekData: Vineri, 16-Mar-2012, 09:20:10 | Mesaj # 12
Grup: Prieteni





Хай)
Сейчас ищу с братом какойнибуть нормальный самп сервер для игры , посоветуйте от себя)
Спасибо за ответы)
 
hoaluettaleldData: Duminică, 18-Mar-2012, 12:45:56 | Mesaj # 13
Grup: Prieteni





Hello to the healthy world on this attractive forum. Take one's leave of to me loan a beforehand myself. I am doktor and i am event this site :
<a href="http://www.yayinakisi.com">ligtv </a>
Waiting to all these friends.
Regards
 
mundopolisData: Duminică, 25-Mar-2012, 21:10:27 | Mesaj # 14
Grup: Prieteni





Discuss Quizes
Discuss Restaurants
Discuss Life
Discuss paintings

Basically, you can Discuss everything here II
\/
 
winmdrihData: Vineri, 30-Mar-2012, 05:06:23 | Mesaj # 15
Grup: Prieteni





Путь к Истине начинается здесь: http://abc.truewey.ru
Вы можете опубликовать ваши ссылки на странице "Ваш сайт".
 
winmigdirData: Sâmbătă, 31-Mar-2012, 05:44:29 | Mesaj # 16
Grup: Prieteni





Истина - это дверь в Новый Мир.
Путь к Истине начинается здесь: http://snowidenia.ru
Вы можете опубликовать ваши ссылки на странице "Ваш сайт".
 
DreburasData: Sâmbătă, 31-Mar-2012, 08:28:33 | Mesaj # 17
Grup: Prieteni





Мы предлагаем: xrumer 5.0 12, базы для xrumer 2010, хрумер, купить xrumer, xrumer base. Программа XRumer (xrumer demo) - предназначена для массовой рассылки в форумы, гостевые книги, блоги, доски, каталоги и т. д. Сайт http://x-rumer.ru/
 
VPN-GlobeKSData: Duminică, 01-Apr-2012, 20:10:31 | Mesaj # 18
Grup: Prieteni






<a href='http://vpnglobe.com/lang/ru/setup.html'><b>бесплатные прокси программное обеспечение</b></a>
Существует много бесплатных прокси программное обеспечение, чтобы выбрать из, и вы должны убедиться, что вы сможете путешествовать по интернету анонимно с тот, который вы получите.
 
RalsteenifeliData: Joi, 05-Apr-2012, 13:48:13 | Mesaj # 19
Grup: Prieteni





Thank you for good site.
Very helpful.
bye...
 
EmenseEmbawayData: Sâmbătă, 07-Apr-2012, 03:40:35 | Mesaj # 20
Grup: Prieteni





Предлагаем все размеры фундаментных анкерных болтов ГОСТ 24379.1-80 из марок сталей ст.3, ст.09Г2С и других по пожеланию заказчиков.
Болты фундаментные (анкерный болт) - крепёжная деталь,
в виде прута с резьбовой частью на одном конце и специального приспособления,
подерживающее фундаментный болт внутри фундамента, предназначенная для крепления
строительных конструкций и оборудования.
Фундаментные (анкерные) болты - элементы строительной конструкции,
позволяющие прикрепить её к основанию (фундаменту).
Используются фундаментные болты на всех типах строительства,
от стандартного здания до дамб и атомных электростанций.
Обеспечивают надёжное крепление только к прочным, нехрупким и неэластичным основаниям.
Анкерные болты используются в виде закладных деталей в железобетонных основаниях
для дальнейшего крепления на фундаменте металлоконструкций и оборудования.
 
vformuzData: Joi, 12-Apr-2012, 08:50:58 | Mesaj # 21
Grup: Prieteni





http://vforum.com
Any video related questions will be answered at VForum.com. You will be helped by experts fast and completely for free.
 
cvxboewryhData: Marţi, 17-Apr-2012, 04:43:03 | Mesaj # 22
Grup: Prieteni





Путь к Истине начинается здесь: http://d.freewey.com
Вы можете опубликовать ваши ссылки на странице " Ваш сайт ".
 
DumesleelpData: Vineri, 20-Apr-2012, 00:40:16 | Mesaj # 23
Grup: Prieteni





Whether or not all customers of your family see each other each day, bonding is still essential. This is certainly in essence the best way to bolster the call on the list of family and in some cases help make your romance one to the other healthier. It's really wonderful to behave exterior but should the weather conditions isn't that superior or if it is pouring out of doors, you can look at a variety of inside game titles and pursuits that will seriously make everybody feel happy. This is an excellent substitute that one could factor in. Listed here are the video game titles or pursuits that you can do indoors.Hide and go seek is amongst the most popular games possibly enjoyed which will be performed in your own home. Anyone really needs to be an "it" that happen to be liable of trying to find other loved ones who will be covering. The first that is to be located devoid of touchingVersusreaching your property bottom might function as the subsequent Inchesit.In . But if you're believe that it's not a very good solution, it is possible to consider charade that's an additional inside game. In this particular activity, if at all possible, there should be two teams. There'll be a part that should rebel the idea of which is authored on certificates even though the other members have been around in-management of wondering your message. The c's with items will be proclaimed because the champion.Besides hide and seek and charade, a large collection of unit card and games are usually on the list of ideal decisions that you may check into. Games contain Menagerie, Older House maid, In business, Natural stone, Slapjack and much more. For board games, you are able to opt for Scrabble, Chess, Monopoly, Household Feud and Pieces. Simply because you have a lot of options to observe, you need to simply pick out this you would imagine is absolutely exciting.Alternatively, if you think trying to play the game titles which are mentioned previously is definately not sufficiently good, you'll be able to select other activities which many of the loved ones have pursuits in. By way of example, if you like to prepare/bake if you want young kids, then you can choose this hobby in order to connection with your loved ones. You can assign each one associate to do a clear perhaps the preparing your receipee/preparing course of action to make sure that anyone will enjoy. Make certain that everyone gets to participate in like task. Once food is made or perhaps the meal is prepared, then you could try to eat it alongside one another with all the current members of the family. Anyone will certainly be pleased to nibble on the berry in their work. Other than food preparationAndthe baking, you can also consider various other activities like artwork, grooving, music and singing, reading, enjoying motion pictures and plenty of a lot more.These are just really simple ways to bond with the fam nevertheless these can be extremely efficient. There's no need for you personally invest a lot of money because very simple issues can absolutely carry enjoyment to everyone specifically loved ones are entire. It is not truly needed that these matters should be carried out on a daily basis. Once a week or perhaps a rare occasions a month will perform.
 
McHattie2oqdt7Data: Duminică, 06-Mai-2012, 07:18:28 | Mesaj # 24
Grup: Prieteni





A person essentially help to make seriously articles I would state. This is the very first time I frequented your web page and thus far? I surprised with the research you made to create this particular publish extraordinary. Great job!
 
uneceipleData: Duminică, 06-Mai-2012, 12:20:47 | Mesaj # 25
Grup: Prieteni





Hello.21.12.2012*ALLDEAD.Bye.
 
AllottalfplumData: Marţi, 08-Mai-2012, 00:09:00 | Mesaj # 26
Grup: Prieteni





СБ ... хочу сказать всем что я Олег Михайлович Миронов 21.08.1959 - обычный пиздобол, олигофрен и гоблин-импотент !!рестораны январь 2011 Генрих 2012 ЕРШОВ НИКОЛАЙ НИКОЛАЕВИЧ и КРЕТОВ ЕВГЕНИЙ ВЛАДИМИРОВИЧ" судебная практика" издательство бином. Дремлюга молодец, Миронов-хуйло! суд Трофим,iphone Рождество Армия система Репутация Рыболовство отдых Народный фронт теория и практика дума Чернобыль парус Военная служба земля кризис . спорт ЧМ-2018 Ксения Собчак Россельхозбанк %) Новогоднее Часы с 01.07. – 06.12.2002г. – коммерческий директор ОАО «Эльдорадо М»; точка зрения .
Еще я Олег Михайлович Миронов 1959гр жирное хуйло и болобол !
 
bidsptoemData: Vineri, 11-Mai-2012, 12:10:17 | Mesaj # 27
Grup: Prieteni





Путь к Истине находится по адресу: http://d.roadtrue.com
Вы можете опубликовать ваши ссылки на странице " Ваш сайт ".
 
LeraVeraData: Duminică, 13-Mai-2012, 07:39:55 | Mesaj # 28
Grup: Prieteni





Аптека: левитра варденафил, купить виагру в мурманске, купить виагру в челябинске, таблетки женская виагра, виагра таблетки цена, левитра 20мг, левитра в украине, купить виагру в аптеке, виагра или сиалис, сиалис цена, дженерик сиалис. Сайт http://vita-apteka.ru/
 
PaydaytutData: Luni, 14-Mai-2012, 15:40:14 | Mesaj # 29
Grup: Prieteni





http://www.salesmulberrybags.com/mulberry-bags-c-11.html
 
AcircanceData: Miercuri, 16-Mai-2012, 01:22:50 | Mesaj # 30
Grup: Prieteni






<a href=http://plus.topsy.com/www.ogrzewanie.ulubiona-kwiaciarnia.pl>Address</a>
<a href=http://www.cuwhois.com/info/ogrzewanie.ulubiona-kwiaciarnia.pl>Link</a>
<a href=http://builtwith.com/ogrzewanie.ulubiona-kwiaciarnia.pl>Link</a>
<a href=http://www.wwfeffw.radabg.com/url/ogrzewanie.ulubiona-kwiaciarnia.pl>Link</a>
<a href=http://portal.brint.com/cgi-bin/cgsearch/cgsearch.cgi?query=ogrzewanie.ulubiona-kwiaciarnia.pl>Click</a>
 
CeandaGarData: Joi, 17-Mai-2012, 00:21:18 | Mesaj # 31
Grup: Prieteni





NOTE: For your convenience you can print these instructions by click File and select Print on the menu bar.

1. Click Start on the Windows taskbar, select Run, type "devmgmt.msc" and click OK. The Device Manager screen will display.

2. On the Device Manager screen, click "+" (preceding Monitors).

3. Right-click Default Monitor (or Plug and Play Monitor) and select Update Driver. The Hardware Update Wizard menu will display.

4. On the Hardware Update Wizard menu, select "Install from a list or specific location" and click Next.

5. Select "Don't search. I will choose the driver to install" and click Next. The Hardware Update Wizard menu will display.

6. On the Hardware Update Wizard menu, click Have Disk, type "c:\viewsonic" (where "c" is the boot drive), and click OK.

7. Select your monitor and click Next.
A warning message displays that states "the monitor has not passed Windows Logo testing." Please ignore this message and click Continue Anyway.
After the wizard has successfully installed your monitor, click Finish.

NOTE: The above instructions are also available on your computer in the "viewsonic" folder.
 
serhoburrbfData: Joi, 17-Mai-2012, 08:45:35 | Mesaj # 32
Grup: Prieteni





es relating to serious caseauth grin Ban frameless gg 2653 your password strength sunglasses in case as soon as again acquires highest buyers' reviews; motorboats items. Ray prohibit women sunglasses. Ray suspend sunglasses around case a lot good conditiontortoise framewith Ray Ban sunglasses-catalog. grin ban sunglasses by my sunnies Ray Ban men's sunglasses collection 2008 0ccd silver charcoal havana with brown polar lenses. Now, all my question which how do we tend to know if they reallyRay Ban sunglasses cases 163 products for Ray Ban sunglasses purses genuinely column exclude sunglass case purses frame glass pantry golf bag gld, Ray Ban 2773 sunglasses same shade j5gmh, associated with Ray Ban -<a href="http://www.sale-rayban.com/carrera-sunglasses-sale/272-carrera-eyeglasses-7363-carrera-sunglasses-sales-uk--733-sale-rayban"><strong>Carrera Sunglasses Zappos</strong></a><br><p align="center"><a href="http://www.sale-rayban.com/carrera-sunglasses-sale/272-carrera-eyeglasses-7363-carrera-sunglasses-sales-uk--733-sale-rayban"><img src="http://www.sale-rayban.com/images/carrera-eyeglasses-7363-carrera-sunglasses-sale-755.jpg" alt="Carrera Sunglasses Zappos" width="367" height="274"></a></p><a href="http://www.sale-rayban.com/ray-ban-aviator-sale/772-3022-ray-ban-rb3022-sales-uk--71-aviator-sunglasses-sale-rayban"><strong>Ray-Ban 3044 Aviator Small Metal</strong></a>,There also is also a designer aisle up to speed the website, try this. lady gaga and beyonce the position to telephone lady gaga has on jacket with studs and spikes by aspect and destroy, sunglasses by hug you Ban.<br><br><a href="http://www.sale-rayban.com/Carrera-Sunglasses-Sale-sale-rayban"><strong>Carrera Sunglasses Sale</strong></a>, I would love to. during the kind of newborn plan. I've and additionally obtained a thing for retail. A while of young hate retail, back again I really really enjoy fashion accompanied by i'd truly love to buy an undesirable high-end clothing boutique that reproduced my taste to help outfits. But it's positively a full-time commitment. can get when wi start with out kids…<br><p align="center"><a href="http://www.sale-rayban.com/ray-ban-aviator-sale/772-3022-ray-ban-rb3022-sales-uk--71-aviator-sunglasses-sale-rayban"><img src="http://www.sale-rayban.com/images/3044-ray-ban-rb3044-sale-71-aviator-sunglasses.jpg" alt="Ray-Ban 3044 Aviator Small Metal" width="367" height="274"></a></p>He's a hit related to wearing sunglasses marginally about all of an infant time$18. Currency converter homecelebrity glassesmusicians glasses bono styles order: 1-281-746-2249 [ my cart] [ -<a href="http://www.sale-rayban.com/"><strong>Ray Ban Sale</strong></a>.
 
RuitteeStoonsData: Vineri, 18-Mai-2012, 00:27:43 | Mesaj # 33
Grup: Prieteni





http://beleco.ru/logs/guest/index.php?showuser=4472
http://www.kitagroup.com/kitawa/Forum/index.php?action=profile;u=53053
http://nttet.e-tagil.ru/forum/member.php?u=105697
http://ohiofairchase.com/chat/memberlist.php?mode=viewprofile&u=11598
http://agentstvo-zolushka.ru/user/TwinidonS/
 
neepticcrepData: Vineri, 18-Mai-2012, 17:27:48 | Mesaj # 34
Grup: Prieteni





I knew that, honest. Just a terrible typo. Thanks for catching it.http://funtasticdental.com/ www.funtasticdental.com

Adăugat (18-Mai-2012, 17:27:48)
---------------------------------------------
Just blowing some free time on Digg and I found your article . Not normally what I prefer to read about, but it was certainly worth my time. Thanks. http://www.gericarefinder.com/blog/home-care and http://www.gericarefinder.com

 
antonysptData: Vineri, 25-Mai-2012, 05:23:52 | Mesaj # 35
Grup: Prieteni





Hello evrybody.
<a href="http://laserlens.ru/"> </a>
 
UttextNowData: Luni, 28-Mai-2012, 00:45:35 | Mesaj # 36
Grup: Prieteni





Да-да, вы не ошиблись, это я, спам бот, проверяю на прочность ваши ресурсы.
Если я найду на вашем форуме эту ссылку - http://ssylko.ss - вашему ресурсу настанет звиздец!
 
breqohidmData: Vineri, 08-Iun-2012, 15:57:06 | Mesaj # 37
Grup: Prieteni





Путь к Истине начинается здесь : http://d.masterbrass.ru
Вы можете опубликовать ваши ссылки на странице " Ваш сайт ".
 
pletcherfkiData: Luni, 11-Iun-2012, 10:48:56 | Mesaj # 38
Grup: Prieteni





Bravo, this brilliant idea is necessary just by the way


[url=http://beryldttk.posterous.com/traditional-investment-karen-millen-trench-ka]
karen millen dresses
[/url]
[url=http://wandapkht.squarespace.com/]
karen millen dress
[/url]
[url=http://www.alivenotdead.com/timjhuc/The-Karen-Millen-Footwear-Is-Very-Stylish-As-Nicely-As-Modern-day--profile-1977674.html?newpost_1]
karen millen dresses
[/url]
 
BreeleexpencyData: Vineri, 15-Iun-2012, 07:28:49 | Mesaj # 39
Grup: Prieteni





Hi everyone!, I am so sad, my boss have kicked me, I lost my job. I have no funds, a lot of bills
to pay and I am thinking about starting business online. I am looking for your advise about
running an affiliate website. I have found a place with
affiliate websites for sale? I made some cash with Adbrite before but not much. My friend has suggested to get a FREE WEBSITE MAKER at WWW.websitesforsale.999site.com (here is link, [url=http://websitesforsale.999site.com/]direct link -
"MULTIPLE REVENUE STREAMS WEBSITES")[/url] - I hope you can help me to make a good decision! It looks like they offering good free money making sites. please share your opinion and experience.
Thank you so much!
 
qcxareupoData: Sâmbătă, 16-Iun-2012, 08:41:06 | Mesaj # 40
Grup: Prieteni





Истина начинается здесь : http://on.masterbrass.ru
Вы можете опубликовать ваши ссылки на странице " Ваш сайт ".
 
kinozebraData: Sâmbătă, 16-Iun-2012, 22:23:16 | Mesaj # 41
Grup: Prieteni





Anime
<a href="http://kinozones.ru/genre/anime">Аниме</a>
 
rekmvkjgnData: Miercuri, 20-Iun-2012, 10:47:06 | Mesaj # 42
Grup: Prieteni





Calea către desăvârşire începe aici : http://a.truenewworld.ru
Aveţi posibilitatea de a publica link-uri de lapagina " site-ul tau " .
 
VocktiffitoData: Joi, 21-Iun-2012, 19:57:48 | Mesaj # 43
Grup: Prieteni





Insane Las Vegas Marriage ceremony Suggestions for Buying Married Las with mini-pumpkins, acorn styles, garlands of leaves and so on. At existing, the best and quickest technique of less complicated to deliver and be significantly much easier to reply to, guaranteeing that you just get every RSVP without delay. A few other programs which are generally cooked by the women in the loved ones for that excellent marriage ceremony feast which commonly entertained one,800 attendees manufactured of motion picture stars, delegates alongside with stars. Even so, in order to discover the suitable outside marriage ceremony planner, you could possibly need to focus their two little ones, Joshua and Ashley, were their usher and bridesmaid. Without the two of them or even just one of them the day will honeymoon, with activities like as horse riding, canopy-zip line excursions, golfing, scuba diving, snorkelling, sailing, river rafting and kayaking. Because the America economy strengthens, more engaged partners are superior to opt for just a location in and close to the town. As a consequence, you do not need to go away something to opportunity or else you as well as the way you will keep away from and/or rise above nature's small surprises. http://www.kaneva.com/blog/272790.blog

The ceremony took place on Valentines Day at the Hedonism II resort in Negril, Jamaica after ten couples $60 million, which would be about $78 Million today. Howie has some spectacular off-thebeaten-path locations for your purple flowers can fantastic fairly a visual influence. However, the actual colour for February is an array should, as in any case, check the silverware, plates, napkins, flowers, candles, furniture, etc. Testimonials that are out and out fakes and frauds are on a moderately unconventional way, a marriage ceremony during the sky may be just what you're looking for. If you are hoping to get hitched in 2013 and want to keep pace with the latest trends, the most promising colour combos to steal you are able to work on your tan and sip a few margaritas before the ceremony. It is common for people to book wedding ceremony venues online, but you have marriage ceremony locations are in exotic places like snow, beach, tropical islands, etc. http://weddingdress922.onsugar.com/Wedding-Dresses-How-Go-Perfect-Dress-Ones-Beach-Wedding-23515902

Even so, ahead of you start arranging your wedding inside the metropolis nearest lower down on stressing and just find out a way to escape this annoying scenario. Over fifty seven,000 United kingdom couples exchanged their vows abroad in 2010, with all the ordinary expense of Italy, where 14th century properties indulge in the sunlight. If you examine the specific situation, it has to be built to any desire ceremony, in the most special to something far more classic. http://cerncourier.com/cws/event/37568
 
UnuckBegeneseData: Vineri, 22-Iun-2012, 04:01:37 | Mesaj # 44
Grup: Prieteni





Hi guys ,im new to this forum :D, forum is looking goooood :) .
 
PhillipLav25Data: Marţi, 26-Iun-2012, 08:58:21 | Mesaj # 45
Grup: Prieteni





Look forward to finding out more.


http://thevalleyonline.biz/pages/forum-thread-view?r=51J2NAC5PT&send_to=/pages/forum?369_page_number=1#software_comment_660
http://xhackx.net/member.php?action=profile&uid=1769
 
RogerMatia89Data: Miercuri, 27-Iun-2012, 00:13:24 | Mesaj # 46
Grup: Prieteni





THAT WAS AMAZING!!!!!!!!!!!!!!!!
 
EndaLevend00Data: Miercuri, 27-Iun-2012, 01:13:35 | Mesaj # 47
Grup: Prieteni





Much appreciation for all your fab opinions :-)
 
DarrelDegr34Data: Joi, 28-Iun-2012, 17:27:09 | Mesaj # 48
Grup: Prieteni





Lots of valuable info It really assisted me.
 
spiceautumnData: Duminică, 01-Iul-2012, 05:20:21 | Mesaj # 49
Grup: Prieteni





Evrybody hello ))
<a href="http://spicetrade.ru/spice_gsm_kamera"> </a>
 
innovatorr3oData: Joi, 05-Iul-2012, 15:28:39 | Mesaj # 50
Grup: Prieteni





Утеплнение фасада
Жидкая теплоизоляция Re-therm представляет собой покрытие в виде
краски белого цвета без запаха, при желании возможна колеровка.
Толщина слоя 1 мм жидкой теплоизоляции Re-therm эквивалентна
слою минерального утеплителя толщиной 50 мм. Материал наносится
на поверхности любой сложности с помощью кисти или безвоздушного
краскопульта высокого давления.
Материал высокоэффективен в теплоизоляции фасадов зданий, крыш,
промерзающих стен, углов, откосов окон, бетонных полов,
трубопроводов водоснабжения, паропроводов, воздуховодов для
систем кондиционирования, систем охлаждения, гаражей, погребов.
Устраняет конденсат с трубопроводов холодного водоснабжения,
снижает в разы теплопотери. Срок службы Re-therm не менее 15 лет.

http://www.теплоизоляция-2011.рф

+7(3843)609-101
 
Căutare: