Blog-Frisstsek-Foldal
Archvum - 2015.

kk tzijtk

<SCRIPT LANGUAGE="JavaScript1.2">
 <!--
 
 /*
 Document firework script (By Matt Gabbert, [email protected], http://www.nolag.com)
 Permission granted to Dynamic Drive to feature script in archive
 For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
 */
 
 //set Interval between each firework display,
 var intervals=2000
 var sparksOn = true;
 var speed = 40;
 var power = 3;
 
 //Dont change these values-------
 var documentWidth=documentHeight=randomx=randomy=leftcorner=topcorner=0
 var ns=(document.layers);
 var ie=(document.all);
 var ns6=(document.getElementById&&!document.all);
 var sparksAflyin = false;
 var allDivs = new Array(10);
 var totalSparks = 0;
 //-------------------------------
 
 function initAll(){
 if(!ns && !ie &&!ns6){
 sparksOn = false;
 return;
 }
 setInterval("firework()",intervals)
 
 if (ns)
 document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
 for(dNum=0; dNum<7; ++dNum){
 if(ie)
 allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
 else if (ns6)
 allDivs[dNum]=document.getElementById('sDiv'+dNum).style;
 else
 allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
 }
 }
 
 function firework(){
 //below code detects the browser dimenions
 if (ie){
 documentWidth=document.body.clientWidth
 documentHeight=document.body.clientHeight
 leftcorner=document.body.scrollLeft
 topcorner=document.body.scrollTop
 }
 else if (ns||ns6){
 documentWidth=window.innerWidth
 documentHeight=window.innerHeight
 leftcorner=pageXOffset
 topcorner=pageYOffset
 
 }
 //below code randomly generates a set of coordinates that fall within the dimension
 randomx=leftcorner+Math.floor(Math.random()*documentWidth)
 randomy=topcorner+Math.floor(Math.random()*documentHeight)
 

 if(sparksOn){
 if(!sparksAflyin){
 sparksAflyin=true;
 totalSparks=0;
 for(var spark=0;spark<=6;spark++){
 dx=Math.round(Math.random()*50);
 dy=Math.round(Math.random()*50);
 moveTo(spark,randomx,randomy,dx,dy);
 }
 }
 }
 }
 
 function moveTo(i,tempx,tempy,dx,dy){
 if(ie){
 if(tempy+80>(document.body.offsetHeight+document.body.scrollTop))
 tempy=document.body.offsetHeight+document.body.scrollTop-80;
 if(tempx+80>(document.body.offsetWidth+document.body.scrollLeft))
 tempx=document.body.offsetWidth+document.body.scrollLeft-80;
 }
 else if(ns6){
 if(tempy+80>(window.innerHeight+pageYOffset))
 tempy=window.innerHeight+pageYOffset-80;
 if(tempx+80>(window.innerWidth+pageXOffset))
 tempx=window.innerWidth+pageXOffset-80;
 }
 if(tempx>-50&&tempy>-50){
 tempx+=dx;tempy+=dy;
 allDivs[i].left=tempx;
 allDivs[i].top=tempy;
 dx-=power;dy-=power;
 setTimeout("moveTo("+i+","+tempx+","+tempy+","+dx+","+dy+")",speed)
 }
 else
 ++totalSparks
 if(totalSparks==7){
 sparksAflyin=false;
 totalSparks=0;
 }
 }
 window.onload=initAll
 //End-->
 </script>
 
 <style>
 #sDiv0 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:blue; z-index:9;}
 #sDiv1 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:blue; z-index:10;}
 #sDiv2 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:blue; z-index:11;}
 #sDiv3 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:blue; z-index:12;}
 #sDiv4 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:blue; z-index:13;}
 #sDiv5 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:blue; z-index:14;}
 #sDiv6 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:blue; z-index:15;}
 </style>
 
</head>
 
<body>
 
<div id="sDiv0">*</div>
 <div id="sDiv1">*</div>
 <div id="sDiv2">*</div>
 <div id="sDiv3">*</div>
 <div id="sDiv4">*</div>
 <div id="sDiv5">*</div>
 <div id="sDiv6">*</div>
 
</body>
 </html>

 

2015.11.30. 18:37, virgonc

piros tzijtk

<SCRIPT LANGUAGE="JavaScript1.2">
 <!--
 
 /*
 Document firework script (By Matt Gabbert, [email protected], http://www.nolag.com)
 Permission granted to Dynamic Drive to feature script in archive
 For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
 */
 
 //set Interval between each firework display,
 var intervals=2000
 var sparksOn = true;
 var speed = 40;
 var power = 3;
 
 //Dont change these values-------
 var documentWidth=documentHeight=randomx=randomy=leftcorner=topcorner=0
 var ns=(document.layers);
 var ie=(document.all);
 var ns6=(document.getElementById&&!document.all);
 var sparksAflyin = false;
 var allDivs = new Array(10);
 var totalSparks = 0;
 //-------------------------------
 
 function initAll(){
 if(!ns && !ie &&!ns6){
 sparksOn = false;
 return;
 }
 setInterval("firework()",intervals)
 
 if (ns)
 document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
 for(dNum=0; dNum<7; ++dNum){
 if(ie)
 allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
 else if (ns6)
 allDivs[dNum]=document.getElementById('sDiv'+dNum).style;
 else
 allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
 }
 }
 
 function firework(){
 //below code detects the browser dimenions
 if (ie){
 documentWidth=document.body.clientWidth
 documentHeight=document.body.clientHeight
 leftcorner=document.body.scrollLeft
 topcorner=document.body.scrollTop
 }
 else if (ns||ns6){
 documentWidth=window.innerWidth
 documentHeight=window.innerHeight
 leftcorner=pageXOffset
 topcorner=pageYOffset
 
 }
 //below code randomly generates a set of coordinates that fall within the dimension
 randomx=leftcorner+Math.floor(Math.random()*documentWidth)
 randomy=topcorner+Math.floor(Math.random()*documentHeight)
 

 if(sparksOn){
 if(!sparksAflyin){
 sparksAflyin=true;
 totalSparks=0;
 for(var spark=0;spark<=6;spark++){
 dx=Math.round(Math.random()*50);
 dy=Math.round(Math.random()*50);
 moveTo(spark,randomx,randomy,dx,dy);
 }
 }
 }
 }
 
 function moveTo(i,tempx,tempy,dx,dy){
 if(ie){
 if(tempy+80>(document.body.offsetHeight+document.body.scrollTop))
 tempy=document.body.offsetHeight+document.body.scrollTop-80;
 if(tempx+80>(document.body.offsetWidth+document.body.scrollLeft))
 tempx=document.body.offsetWidth+document.body.scrollLeft-80;
 }
 else if(ns6){
 if(tempy+80>(window.innerHeight+pageYOffset))
 tempy=window.innerHeight+pageYOffset-80;
 if(tempx+80>(window.innerWidth+pageXOffset))
 tempx=window.innerWidth+pageXOffset-80;
 }
 if(tempx>-50&&tempy>-50){
 tempx+=dx;tempy+=dy;
 allDivs[i].left=tempx;
 allDivs[i].top=tempy;
 dx-=power;dy-=power;
 setTimeout("moveTo("+i+","+tempx+","+tempy+","+dx+","+dy+")",speed)
 }
 else
 ++totalSparks
 if(totalSparks==7){
 sparksAflyin=false;
 totalSparks=0;
 }
 }
 window.onload=initAll
 //End-->
 </script>
 
 <style>
 #sDiv0 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:red; z-index:9;}
 #sDiv1 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:red; z-index:10;}
 #sDiv2 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:red; z-index:11;}
 #sDiv3 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:red; z-index:12;}
 #sDiv4 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:red; z-index:13;}
 #sDiv5 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:red; z-index:14;}
 #sDiv6 {position:absolute; height:1; width:1; font-family:arial black; font-size:25px; color:red; z-index:15;}
 </style>
 
</head>
 
<body>
 
<div id="sDiv0">*</div>
 <div id="sDiv1">*</div>
 <div id="sDiv2">*</div>
 <div id="sDiv3">*</div>
 <div id="sDiv4">*</div>
 <div id="sDiv5">*</div>
 <div id="sDiv6">*</div>
 
</body>
 </html>

 

2015.11.30. 18:35, virgonc

karcsonyi csomag tzijtk

<SCRIPT LANGUAGE="JavaScript1.2">
  <!--
 /*
  Document firework script (By Matt Gabbert, [email protected], http://www.nolag.com)
  Permission granted to Dynamic Drive to feature script in archive
  For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
  */
 //set Interval between each firework display,
  var intervals=2000
  var sparksOn     = true;
  var speed        = 40;
  var power        = 3;
 //Dont change these values-------
  var documentWidth=documentHeight=randomx=randomy=leftcorner=topcorner=0
  var ns=(document.layers);
  var ie=(document.all);
  var ns6=(document.getElementById&&!document.all);
  var sparksAflyin = false;
  var allDivs      = new Array(10);
  var totalSparks  = 0;
  //-------------------------------
 function initAll(){
   if(!ns && !ie &&!ns6){
   sparksOn = false;
   return;
   }
  setInterval("firework()",intervals)
 if (ns)
   document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
   for(dNum=0; dNum<7; ++dNum){
    if(ie)
     allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
                  else if (ns6)
                          allDivs[dNum]=document.getElementById('sDiv'+dNum).style;
    else
     allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
   }
  }
 function firework(){
  //below code detects the browser dimenions
  if (ie){
  documentWidth=document.body.clientWidth
  documentHeight=document.body.clientHeight
  leftcorner=document.body.scrollLeft
  topcorner=document.body.scrollTop
  }
  else if (ns||ns6){
  documentWidth=window.innerWidth
  documentHeight=window.innerHeight
  leftcorner=pageXOffset
  topcorner=pageYOffset
 }
  //below code randomly generates a set of coordinates that fall within the dimension
  randomx=leftcorner+Math.floor(Math.random()*documentWidth)
  randomy=topcorner+Math.floor(Math.random()*documentHeight)
  if(sparksOn){
    if(!sparksAflyin){
     sparksAflyin=true;
     totalSparks=0;
     for(var spark=0;spark<=6;spark++){
      dx=Math.round(Math.random()*50);
      dy=Math.round(Math.random()*50);
      moveTo(spark,randomx,randomy,dx,dy);
     }
    }
   }
  }
 function moveTo(i,tempx,tempy,dx,dy){
   if(ie){
    if(tempy+80>(document.body.offsetHeight+document.body.scrollTop))
     tempy=document.body.offsetHeight+document.body.scrollTop-80;
    if(tempx+80>(document.body.offsetWidth+document.body.scrollLeft))
     tempx=document.body.offsetWidth+document.body.scrollLeft-80;
   }
   else if(ns6){
    if(tempy+80>(window.innerHeight+pageYOffset))
     tempy=window.innerHeight+pageYOffset-80;
    if(tempx+80>(window.innerWidth+pageXOffset))
     tempx=window.innerWidth+pageXOffset-80;
   }
   if(tempx>-50&&tempy>-50){
    tempx+=dx;tempy+=dy;
    allDivs[i].left=tempx;
    allDivs[i].top=tempy;
    dx-=power;dy-=power;
    setTimeout("moveTo("+i+","+tempx+","+tempy+","+dx+","+dy+")",speed)
   }
   else
    ++totalSparks
   if(totalSparks==7){
    sparksAflyin=false;
    totalSparks=0;
   }
  }
  window.onload=initAll
  //End-->
  </script>
 <style>
  #sDiv0 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:Aqua; z-index:9;}
  #sDiv1 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:red; z-index:10;}
  #sDiv2 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:blue; z-index:11;}
  #sDiv3 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:orange; z-index:12;}
  #sDiv4 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:yellow; z-index:13;}
  #sDiv5 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:lightgreen; z-index:14;}
  #sDiv6 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:silver; z-index:15;}
  </style>
  <div id="sDiv0"><img src
 =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448904554_72.gif></div>
  <div id="sDiv1"> <img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448904554_72.gif> </div>
  <div id="sDiv2"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448904554_72.gif></div>
  <div id="sDiv3"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448904554_72.gif></div>
  <div id="sDiv4"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448904554_72.gif></div>
  <div id="sDiv5"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448904554_72.gif></div>
  <div id="sDiv6"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448904554_72.gif></div>

2015.11.30. 18:30, virgonc

karcsonyi harang tzijtk

<SCRIPT LANGUAGE="JavaScript1.2">
  <!--
 /*
  Document firework script (By Matt Gabbert, [email protected], http://www.nolag.com)
  Permission granted to Dynamic Drive to feature script in archive
  For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
  */
 //set Interval between each firework display,
  var intervals=2000
  var sparksOn     = true;
  var speed        = 40;
  var power        = 3;
 //Dont change these values-------
  var documentWidth=documentHeight=randomx=randomy=leftcorner=topcorner=0
  var ns=(document.layers);
  var ie=(document.all);
  var ns6=(document.getElementById&&!document.all);
  var sparksAflyin = false;
  var allDivs      = new Array(10);
  var totalSparks  = 0;
  //-------------------------------
 function initAll(){
   if(!ns && !ie &&!ns6){
   sparksOn = false;
   return;
   }
  setInterval("firework()",intervals)
 if (ns)
   document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
   for(dNum=0; dNum<7; ++dNum){
    if(ie)
     allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
                  else if (ns6)
                          allDivs[dNum]=document.getElementById('sDiv'+dNum).style;
    else
     allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
   }
  }
 function firework(){
  //below code detects the browser dimenions
  if (ie){
  documentWidth=document.body.clientWidth
  documentHeight=document.body.clientHeight
  leftcorner=document.body.scrollLeft
  topcorner=document.body.scrollTop
  }
  else if (ns||ns6){
  documentWidth=window.innerWidth
  documentHeight=window.innerHeight
  leftcorner=pageXOffset
  topcorner=pageYOffset
 }
  //below code randomly generates a set of coordinates that fall within the dimension
  randomx=leftcorner+Math.floor(Math.random()*documentWidth)
  randomy=topcorner+Math.floor(Math.random()*documentHeight)
  if(sparksOn){
    if(!sparksAflyin){
     sparksAflyin=true;
     totalSparks=0;
     for(var spark=0;spark<=6;spark++){
      dx=Math.round(Math.random()*50);
      dy=Math.round(Math.random()*50);
      moveTo(spark,randomx,randomy,dx,dy);
     }
    }
   }
  }
 function moveTo(i,tempx,tempy,dx,dy){
   if(ie){
    if(tempy+80>(document.body.offsetHeight+document.body.scrollTop))
     tempy=document.body.offsetHeight+document.body.scrollTop-80;
    if(tempx+80>(document.body.offsetWidth+document.body.scrollLeft))
     tempx=document.body.offsetWidth+document.body.scrollLeft-80;
   }
   else if(ns6){
    if(tempy+80>(window.innerHeight+pageYOffset))
     tempy=window.innerHeight+pageYOffset-80;
    if(tempx+80>(window.innerWidth+pageXOffset))
     tempx=window.innerWidth+pageXOffset-80;
   }
   if(tempx>-50&&tempy>-50){
    tempx+=dx;tempy+=dy;
    allDivs[i].left=tempx;
    allDivs[i].top=tempy;
    dx-=power;dy-=power;
    setTimeout("moveTo("+i+","+tempx+","+tempy+","+dx+","+dy+")",speed)
   }
   else
    ++totalSparks
   if(totalSparks==7){
    sparksAflyin=false;
    totalSparks=0;
   }
  }
  window.onload=initAll
  //End-->
  </script>
 <style>
  #sDiv0 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:Aqua; z-index:9;}
  #sDiv1 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:red; z-index:10;}
  #sDiv2 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:blue; z-index:11;}
  #sDiv3 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:orange; z-index:12;}
  #sDiv4 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:yellow; z-index:13;}
  #sDiv5 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:lightgreen; z-index:14;}
  #sDiv6 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:silver; z-index:15;}
  </style>
  <div id="sDiv0"><img src
 =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478069_26.png></div>
  <div id="sDiv1"> <img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478069_26.png> </div>
  <div id="sDiv2"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478069_26.png></div>
  <div id="sDiv3"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478069_26.png></div>
  <div id="sDiv4"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478069_26.png></div>
  <div id="sDiv5"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478069_26.png></div>
  <div id="sDiv6"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478069_26.png></div>

2015.11.30. 18:23, virgonc

karcsonyi dsz tzijtk

<SCRIPT LANGUAGE="JavaScript1.2">
  <!--
 /*
  Document firework script (By Matt Gabbert, [email protected], http://www.nolag.com)
  Permission granted to Dynamic Drive to feature script in archive
  For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
  */
 //set Interval between each firework display,
  var intervals=2000
  var sparksOn     = true;
  var speed        = 40;
  var power        = 3;
 //Dont change these values-------
  var documentWidth=documentHeight=randomx=randomy=leftcorner=topcorner=0
  var ns=(document.layers);
  var ie=(document.all);
  var ns6=(document.getElementById&&!document.all);
  var sparksAflyin = false;
  var allDivs      = new Array(10);
  var totalSparks  = 0;
  //-------------------------------
 function initAll(){
   if(!ns && !ie &&!ns6){
   sparksOn = false;
   return;
   }
  setInterval("firework()",intervals)
 if (ns)
   document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
   for(dNum=0; dNum<7; ++dNum){
    if(ie)
     allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
                  else if (ns6)
                          allDivs[dNum]=document.getElementById('sDiv'+dNum).style;
    else
     allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
   }
  }
 function firework(){
  //below code detects the browser dimenions
  if (ie){
  documentWidth=document.body.clientWidth
  documentHeight=document.body.clientHeight
  leftcorner=document.body.scrollLeft
  topcorner=document.body.scrollTop
  }
  else if (ns||ns6){
  documentWidth=window.innerWidth
  documentHeight=window.innerHeight
  leftcorner=pageXOffset
  topcorner=pageYOffset
 }
  //below code randomly generates a set of coordinates that fall within the dimension
  randomx=leftcorner+Math.floor(Math.random()*documentWidth)
  randomy=topcorner+Math.floor(Math.random()*documentHeight)
  if(sparksOn){
    if(!sparksAflyin){
     sparksAflyin=true;
     totalSparks=0;
     for(var spark=0;spark<=6;spark++){
      dx=Math.round(Math.random()*50);
      dy=Math.round(Math.random()*50);
      moveTo(spark,randomx,randomy,dx,dy);
     }
    }
   }
  }
 function moveTo(i,tempx,tempy,dx,dy){
   if(ie){
    if(tempy+80>(document.body.offsetHeight+document.body.scrollTop))
     tempy=document.body.offsetHeight+document.body.scrollTop-80;
    if(tempx+80>(document.body.offsetWidth+document.body.scrollLeft))
     tempx=document.body.offsetWidth+document.body.scrollLeft-80;
   }
   else if(ns6){
    if(tempy+80>(window.innerHeight+pageYOffset))
     tempy=window.innerHeight+pageYOffset-80;
    if(tempx+80>(window.innerWidth+pageXOffset))
     tempx=window.innerWidth+pageXOffset-80;
   }
   if(tempx>-50&&tempy>-50){
    tempx+=dx;tempy+=dy;
    allDivs[i].left=tempx;
    allDivs[i].top=tempy;
    dx-=power;dy-=power;
    setTimeout("moveTo("+i+","+tempx+","+tempy+","+dx+","+dy+")",speed)
   }
   else
    ++totalSparks
   if(totalSparks==7){
    sparksAflyin=false;
    totalSparks=0;
   }
  }
  window.onload=initAll
  //End-->
  </script>
 <style>
  #sDiv0 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:Aqua; z-index:9;}
  #sDiv1 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:red; z-index:10;}
  #sDiv2 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:blue; z-index:11;}
  #sDiv3 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:orange; z-index:12;}
  #sDiv4 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:yellow; z-index:13;}
  #sDiv5 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:lightgreen; z-index:14;}
  #sDiv6 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:silver; z-index:15;}
  </style>
  <div id="sDiv0"><img src
 =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478070_50.png></div>
  <div id="sDiv1"> <img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478070_50.png> </div>
  <div id="sDiv2"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478070_50.png></div>
  <div id="sDiv3"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478070_50.png></div>
  <div id="sDiv4"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478070_50.png></div>
  <div id="sDiv5"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478070_50.png></div>
  <div id="sDiv6"><img src =//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1448478070_50.png></div>

2015.11.30. 18:21, virgonc
 
Blog(havi)
 
Blog(ves)
ARCHVUM

 

 
Oldal info

Virg

.
www.jegvirag.gportal.hu

Ez az oldal a www.jegvirag.gportal.hu MINTA oldala,az oldalon tesztelem a design-et ,kdokat...

Elrhetsgem: [email protected]

Vendgknyv      Kptr      Blog

 

 
Men
 
Szmll
Induls: 2014-07-11
 
Bejelentkezs
Felhasznlnv:

Jelsz:
SgSg
Regisztrci
Elfelejtettem a jelszt
 
Csskod

 

 
Copyright © 2005-2023 Virg Design /www.jegvirag.gportal.hu/[email protected]

RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    PREKAMBRIUM //// A TUDÁS BIRODALMA///PREKAMBRIUM.GPORTAL.HU /// PREKAMBRIUM //// A TUDÁS BIRODALMA    *****    Naruto rajongói oldal | Könyv fordítások, fanficek | Nézzetek be és olvasgassatok! | Naruto rajongói oldal | KONOHA.HU    *****    Pont ITT Pont MOST! Pont NEKED! Már fejlesztés alatt is szebbnél szebb képek! Ha gondolod gyere less be!    *****    Itachi Shinden harmadi fejezet!! - ÚJ FEJEZET - Felkerült a könyv harmadik harmada!! Konoha.hu - KATT!! KATT! KATT! KATT    *****    MAGYAR HIMNUSZ GITÁRON    *****    KONOHA.HU | Naruto rajongói oldal! Olvass, tanulj, nézd az animét! 2026-ban is a KONOHA.HU-N | KONOHA.HU | KONOHA.HU | K    *****    RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    PREKAMBRIUM //// A TUDÁS BIRODALMA///PREKAMBRIUM.GPORTAL.HU /// PREKAMBRIUM //// A TUDÁS BIRODALMA    *****    RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    Naruto rajongói oldal | konoha.hu | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU |    *****    NSYNC - a fiúbandák korszakának egyik legmeghatározóbb csapata a Bye Bye Bye elõadói - nosztalgiária fel    *****    RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    PREKAMBRIUM //// A TUDÁS BIRODALMA///PREKAMBRIUM.GPORTAL.HU /// PREKAMBRIUM //// A TUDÁS BIRODALMA    *****    ACOTAR Fanfiction: Velaris, a második otthonom    *****    AGICAKÖNYVTÁRA - KÖNYVEK, KÖNYVEK, ÉS KÖNYVEK - ÁGICAKÖNYVTÁRA    *****    Naruto rajongói oldal | konoha.hu | Boldog újévet kívánunk nektek KONOHÁBÓL!!! | KONOHA.HU | KONOHA.HU | KONOHA.HU |    *****    Debrecen Nagyerd&#245;aljai, 150m2-es alapterület&#251;, egyszintes, 300m2-es telken, sok parkolós üzlethelyiség eladó 06209911123    *****    ACOTAR Fanfiction: Velaris, a második otthonom    *****    LITERATURES SUBPAGE /// VERSEK ÉS TÖRTÉNETEK EGY HELYEN ///LITERATURES.GPORTAL.HU///LITERATURES SUBPAGE