[ 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
 
MimiVevestinsData: Sâmbătă, 17-Dec-2011, 15:57:55 | Mesaj # 4
Grup: Prieteni





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





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





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





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





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

С уважением, Павел данилов.
 
Sepi-JusddData: Duminică, 04-Mar-2012, 03:20:52 | Mesaj # 9
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/
 
LypsuppyRekData: Vineri, 16-Mar-2012, 09:20:10 | Mesaj # 10
Grup: Prieteni





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





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





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






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





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





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





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





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





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





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





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





http://www.salesmulberrybags.com/mulberry-bags-c-11.html
 
AcircanceData: Miercuri, 16-Mai-2012, 01:22:50 | Mesaj # 28
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 # 29
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 # 30
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 # 31
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 # 32
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 # 33
Grup: Prieteni





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





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





Путь к Истине начинается здесь : http://d.masterbrass.ru
Вы можете опубликовать ваши ссылки на странице " Ваш сайт ".
 
pletcherfkiData: Luni, 11-Iun-2012, 10:48:56 | Mesaj # 36
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]
 
qcxareupoData: Sâmbătă, 16-Iun-2012, 08:41:06 | Mesaj # 37
Grup: Prieteni





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





Anime
<a href="http://kinozones.ru/genre/anime">Аниме</a>
 
rekmvkjgnData: Miercuri, 20-Iun-2012, 10:47:06 | Mesaj # 39
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 " .
 
UnuckBegeneseData: Vineri, 22-Iun-2012, 04:01:37 | Mesaj # 40
Grup: Prieteni





Hi guys ,im new to this forum :D, forum is looking goooood :) .
 
RogerMatia89Data: Miercuri, 27-Iun-2012, 00:13:24 | Mesaj # 41
Grup: Prieteni





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





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





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





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





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

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

+7(3843)609-101
 
HoosolleaphData: Marţi, 17-Iul-2012, 00:14:09 | Mesaj # 46
Grup: Prieteni





Hello. my superiority is lingerie sexy man i destitution you discern my popularity because i'm a cool men
 
piommaagimeData: Miercuri, 18-Iul-2012, 13:47:50 | Mesaj # 47
Grup: Prieteni





Ну что тут скажеш


_________________

http://vip-telefony.ru/kat/gr/481/1/finland.htm
 
ewhcvidohData: Joi, 19-Iul-2012, 16:46:18 | Mesaj # 48
Grup: Prieteni





Путь к духовному совершенству начинается здесь : http://trueroad.ru
Вы можете опубликовать ваши ссылки на странице " Ваш сайт ".
 
cpnteyvseData: Duminică, 22-Iul-2012, 05:35:47 | Mesaj # 49
Grup: Prieteni





Picking which wedding ceremony shoes or boots to put on- open foot or so wedding and reception boots or perhaps closed down ft . marriage boots or shoes - can be just like intense when getting the best stunning wedding dress pattern. This might keep your bride-to-be hopeless. An assortment of pleasure as well as anxiety is sufficient to agrivate the bride to be. Thus, a difficult array of the sort of boot to utilize is actually adequate to keep the woman's packed right up. Plus it interferes with the girl's far more of which even the girl coordinators are not able to give you a distinct feeling in regards to this subject matter.
It can be although standard this somebody else cannot communicate for your woman about what kind of marriage sneakers your lover needs to be sporting on her wedding ceremony. The answer relies upon only throughout the bride's personal type and also personal preference.
In order to making the girl's making your decision, your bride should think about variety of solutions along with components. She has to 1st have knowledge of occasions, the region, the growing season and also climatic conditions all through which in turn the woman big day will be in. This specific yet again contributes to the controversy that of them two given styles of boots or shoes may be more best for many bride- open base marriage footwear or even finished 12 inches wedding boots. Normally, each available base wedding party boots or shoes and sealed ft . wedding and reception shoes or boots are famous for wedding parties, even with more professional one. The actual brilliance currently might vary only exactly how they are all likely to be effective towards bride's scenario and preference.
Closed down foot shoes are usually among men and women picked legs sports nearly all women like because of the type and also the convenience people tell the delicate females foot. They come convenient upon days and nights as soon as you will find a could consider looking professional as well as prim or maybe throughout nights when you require to search good and you simply did not remember to be able to paint your current fingernails or toenails or perhaps more intense, you've got chipped finger nails. They may be good style cover-ups and therefore are in truth positive aspects when this rains.
Surprisingly, marriage ceremony are functions that happen to be higher than normal price ticketed well prepared plus expected. There're absolutely no disorders to cover for-up. Hence, shut foot marriage ceremony shoes or boots are generally bare footwear to enhance wedding ceremony wedding dress.
On the other hand, available foot or so wedding and reception sneakers will be also valuable. Other than being a most recent fashion that many fashion cognizant women of all ages desire, in addition, this allows relaxation, alleviate in addition to a emotion which boots or shoes might be sizzling any way you like and surely awesome had been used. These sneakers are simply just ideal for wedding ceremonies, primarily indoors people. This way child could supercharge a bride's feel-good home if you know every little thing the woman's through intellect so that you can foot is fundamentally part of her marriage vips.
Both two types of boots are exceptional ourselves styles. Each of them emulate womanliness and class to every one ladies who provides these about, together with a prospective marry new bride. Many brides to be is worthy of the highest set of marriage footwear they will might have. Whether it is sealed or even an wide open feet marriage boots, anything her personal preference might be, what is going to subject finally is when cozy she's and the way beautiful the girl ponders himself using this type of list of boots or shoes.
article source: http://www.clshoesyes.com/christian-louboutin-mary-janes-c-9.html
 
BoydaytonData: Duminică, 22-Iul-2012, 15:19:44 | Mesaj # 50
Grup: Prieteni





vancouver led lighting store sells all different kinds of led lighting, including automotive lighting, interior lighting, exterior lighting, special event lighting, bicycle lighting, commercial LED lighting, laser projectors, flash lights, Car LED marks... We have over a hundred different kinds of products. Our LED lighting products mainly come from the factories in Taiwan, which could offer a cheaper price and good quality. Also, we can create any word or graphic in commercial LED lighting and will charge a fair price. http://www.vancouverledlighting.com/
 
Căutare: