ÿþ <html><head><title>Hacked By ICARUS</title> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script> window.scrollBy(0, 1) window.resizeTo(0,0) window.moveTo(0,0) //setInterval("move()",30); setTimeout("move()", 1); var mxm=50 var mym=25 var mx=0 var my=0 var sv=50 var status=1 var szx=0 var szy=0 var c=255 var n=0 var sm=30 var cycle=2 var done=2 function move() { if (status == 1) { mxm=mxm/1.05 mym=mym/1.05 mx=mx+mxm my=my-mym mxm=mxm+(400-mx)/100 mym=mym-(300-my)/100 window.moveTo(mx,my) rmxm=Math.round(mxm/10) rmym=Math.round(mym/10) if (rmxm == 0) { if (rmym == 0) { status=2 } } } if (status == 2) { sv=sv/1.1 scrratio=1+1/3 mx=mx-sv*scrratio/2 my=my-sv/2 szx=szx+sv*scrratio szy=szy+sv window.moveTo(mx,my) window.resizeTo(szx,szy) if (sv < 0.1) { status=3 } } if (status == 3) { document.fgColor=0xffffFF c=c-16 if (c<0) {status=8} } if (status == 4) { c=c+16 document.bgColor=c*65536 document.fgColor=(255-c)*65536 if (c > 239) {status=5} } if (status == 5) { c=c-16 document.bgColor=c*65536 document.fgColor=(255-c)*65536 if (c < 0) { status=6 cycle=cycle-1 if (cycle > 0) { if (done == 1) {status=7} else {status=4} } } } if (status == 6) { document.title = "LlyKil" alert("LlyKil") cycle=2 status=4 done=1 } if (status == 7) { c=c+4 document.bgColor=c*65536 document.fgColor=(255-c)*65536 if (c > 128) {status=8} } if (status == 8) { window.moveTo(0,0) sx=screen.availWidth sy=screen.availHeight window.resizeTo(sx,sy) status=9 } var timer=setTimeout("move()",0.3) } </script> <SCRIPT language=JavaScript> var brzinakucanja = 200; var pauzapor = 2000; var vremeid = null; var kretanje = false; var poruka = new Array(); var slporuka = 0; var bezporuke = 0; poruka[0] = "Hacked By ICARUS" poruka[1] = "Y!h: icarus_vn" poruka[1] = "ICARUS" function prikaz() { var text = poruka[slporuka]; if (bezporuke < text.length) { if (text.charAt(bezporuke) == " ") bezporuke++ var ttporuka = text.substring(0, bezporuke + 1); document.title = ttporuka; bezporuke++ vremeid = setTimeout("prikaz()", brzinakucanja); kretanje = true; } else { bezporuke = 0; slporuka++ if (slporuka == poruka.length) slporuka = 0; vremeid = setTimeout("prikaz()", pauzapor); kretanje = true; } } function stop() { if (kretanje) clearTimeout(vremeid); kretanje = false } function start() { stop(); prikaz(); } start(); </SCRIPT> <style type="text/css"> <!-- .style3 { color: #00FF33; font-size: 1.5cm; } .style5 {color: #ff0066} --> </style></head><body onselectstart="return false" ondragstart="return false" oncontextmenu="return false" onLoad="writetext()" text="#167715" background="http://cc8.upanh.com/26.799.34022957.hCw0/nen2.gif" bgcolor="#000000"> <script type="text/javascript"> TypingText = function(element, interval, cursor, finishedCallback) { if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) { this.running = true; // Never run. return; } this.element = element; this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; }); this.interval = (typeof interval == "undefined" ? 100 : interval); this.origText = this.element.innerHTML; this.unparsedOrigText = this.origText; this.cursor = (cursor ? cursor : ""); this.currentText = ""; this.currentChar = 0; this.element.typingText = this; if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++; TypingText.all.push(this); this.running = false; this.inTag = false; this.tagBuffer = ""; this.inHTMLEntity = false; this.HTMLEntityBuffer = ""; } TypingText.all = new Array(); TypingText.currentIndex = 0; TypingText.runAll = function() { for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run(); } TypingText.prototype.run = function() { if(this.running) return; if(typeof this.origText == "undefined") { setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience. return; } if(this.currentText == "") this.element.innerHTML = ""; // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text. if(this.currentChar < this.origText.length) { if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) { this.tagBuffer = "<"; this.inTag = true; this.currentChar++; this.run(); return; } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) { this.tagBuffer += ">"; this.inTag = false; this.currentText += this.tagBuffer; this.currentChar++; this.run(); return; } else if(this.inTag) { this.tagBuffer += this.origText.charAt(this.currentChar); this.currentChar++; this.run(); return; } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) { this.HTMLEntityBuffer = "&"; this.inHTMLEntity = true; this.currentChar++; this.run(); return; } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) { this.HTMLEntityBuffer += ";"; this.inHTMLEntity = false; this.currentText += this.HTMLEntityBuffer; this.currentChar++; this.run(); return; } else if(this.inHTMLEntity) { this.HTMLEntityBuffer += this.origText.charAt(this.currentChar); this.currentChar++; this.run(); return; } else { this.currentText += this.origText.charAt(this.currentChar); } this.element.innerHTML = this.currentText; this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : ""); this.currentChar++; setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); } else { this.currentText = ""; this.currentChar = 0; this.running = false; this.finishedCallback(); } } </script> <script type="text/javascript"> mwidth=20; // the number of characters in the display mdelay=200; // delay in milliseconds between character shifts dumpExtraSpaces=false; // set to true if you want to reduce multiple spaces to a single space mpos=0; chars=" 0123456789abcdefghijklmnopqrstuvwxyz+-*/=?^&().,'!~$"; content=new Array(); color=new Array(); colors=new Array(); colors['green']=0; colors['yellow']=-27; colors['red']=-54; colors['blue']=-81; colorind=new Array(); colorind[0]='green'; var mtxt; function marqueeInit(){ mtxt=document.getElementById("[X-Pr0").innerHTML.toLowerCase(); mtxt=mtxt.replace(/.../g,'~'); mtxt=mtxt.replace(/&/g,'&'); mtxt=mtxt.replace(/"/g,"'"); mtxt=mtxt.replace(/[/g,'('); mtxt=mtxt.replace(/]/g,')'); mtxt=mtxt.replace(/{/g,'('); mtxt=mtxt.replace(/}/g,')'); mtxt=mtxt.replace(/[nr]/g,' '); if(dumpExtraSpaces) mtxt=mtxt.replace(/s{2,}/g,' '); bpos=mtxt.indexOf('<'); attempt=0; while(bpos>=0){ mtxt.search(/<([^>]*)>/); ctmp=RegExp.$1; colorind[bpos]=ctmp; mtxt=mtxt.replace(/<[^>]*>/,''); bpos=mtxt.indexOf('<'); attempt++; if(attempt>500){ // prevent browser lockups if something goes fishy (open <) alert('parse failure'); return false; } } mcont="<div style='display:none'>"+mtxt+"<p>&nbsp;</p></div>"; for(i=0;i<mwidth;i++){ mcont+="<div class='digit' id='js_dig"+i+"'></div>n"; mtxt=' '+mtxt+' '; } curcolor=0; for(i=0;i<mtxt.length;i++){ if(colorind[i-mwidth]!=null){ curcolor=colors[colorind[i-mwidth]]||0; } color[i]=curcolor; content[i]=-16*chars.indexOf(mtxt.substr(i,1)); } document.getElementById("ledmarquee").style.width=(mwidth*16)+'px'; document.getElementById("ledmarquee").innerHTML=mcont; document.getElementById("ledmarquee").style.visibility='visible'; mtimer=setInterval('marqueeScroll()',mdelay); document.getElementById("ledContainer").style.width=(10+mwidth*16)+'px'; } function marqueeScroll(){ for(i=0;i<mwidth;i++){ document.getElementById('js_dig'+i).style.backgroundPosition=content[i+mpos]+'px '+color[i+mpos]+'px'; } mpos++; if(mpos==mtxt.length-mwidth) mpos=0; } function onloadAppend(func){ var oldonload=window.onload; if(typeof window.onload!='function'){ window.onload=func; } else { window.onload=function(){ if(oldonload) { oldonload(); } func(); } } } onloadAppend(marqueeInit); </script> <script language="JavaScript"> msg = new Array(); //strings written in screen msg[0] = "ICARUS"; msg[1] = "Welcome to VHB GROUP"; text1 = ""; //the same as text2, only the last character is highlighted text2 = ""; //current string, which will be written count = 0; //char index in string text count2 = 0; //number of strings text = msg[0].split(""); //text - string written function writetext() { //show strings above on screen text1 = text2 + "<font color='00ff00'>" + text[count] + "</font>"; text2 += text[count]; document.all["nothing"].innerHTML = text1; //where to write if (count < text.length-1){ count++; setTimeout('writetext()', 25); } else { //if this string is written, get the new string count = 0; if (count2 != 4) { //write 4 strings count2++; text2 += "<p>"; //a new line text = eval('msg['+count2+'].split("")'); //get the new string to text setTimeout('writetext()', 25); } } } </script> <style type="text/css">.matrix { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10pt; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 10px; PADDING-TOP: 0px; FONT-FAMILY: Lucida Console, Courier, Monotype; TEXT-ALIGN: center } </style> <p></p> <script language="JavaScript"> msg = new Array(); //strings written in screen msg[0] = "<h2><u><center>..::--- Hello---::..</center></u></h2>"; text1 = ""; //the same as text2, only the last character is highlighted text2 = ""; //current string, which will be written count = 0; //char index in string text count2 = 0; //number of strings text = msg[0].split(""); //text - string written function writetext() { //show strings above on screen text1 = text2 + "<font color='00ff00'>" + text[count] + "</font>"; text2 += text[count]; document.all["nothing"].innerHTML = text1; //where to write if (count < text.length-1){ count++; setTimeout('writetext()', 25); } else { //if this string is written, get the new string count = 0; if (count2 != 4) { //write 4 strings count2++; text2 += "<p>"; //a new line text = eval('msg['+count2+'].split("")'); //get the new string to text setTimeout('writetext()', 25); } } } </script> <center> <p><img src="http://i567.photobucket.com/albums/ss114/cubi11/hacked2.jpg" alt="" width="220" border="0"></p> <img src="http://i567.photobucket.com/albums/ss114/cubi11/storm_9761679342144499258_heartbeat.gif" alt="" width="220" border="0"></img> </center> <table align="center" border="1" height="220" width="380"> <tbody background="http://cc9.upanh.com/24.882.32003308.0qN0/hio.gif"><tr> <td valign="top"><p id="hack" style="margin-left: 3px;"> <font color="#f00000"> -Please Waiting . . . . . . </font> <br> <font color="#ff9000"> -Connected Sever!!! </font><br> <font color="#ff9000"> . . . . . . . . <font color="#ffffff"></font> . . . . . . . . </font> </br> <font color="#ff9000"> This Server Is Not Secure !</font></font><br> <font color="#ff9000"> Database Is Dropped Successfully......!</font></font> <font color="#ff9000"> </font><br> <font color="#ff9000"> I'm So Sorry....</font><br> <font color="#ff9000"> !!!!!!!!!!!!!!!!!</font><br> <font color="#ff9000"> -Don't Forget Me! I'll Comeback Soon!!</font><br> <font color="lime"> -Pm Y!h: icarus_vn for more informations!</font></font> <br> <font color="#00ffff">See You Again! Have A Worderful Day!!! </font> _</p></td> </tr> </tbody></table> <p><big><b><b> </b></b></big></p> <center><span face="Impact" 1pt="" font-size:=""> <div id="nothing" style=""> <h2><u></u></h2> </div> <table align="center"> <tbody></tbody></table> <big><b><b> <script language="JavaScript" type="text/javascript"> <!-- var rows=1; // must be an odd number var speed=20; // lower is faster var reveal=0; // between 0 and 2 only. The higher, the faster the word appears var effectalign="default" //enter "center" to center it. /*********************************************** * The Matrix Text Effect- by Richard Womersley (http://www.mf2fm.co.uk/rv) * This notice must stay intact for use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ var w3c=document.getElementById && !window.opera;; var ie45=document.all && !window.opera; var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho; var m_coch=new Array(); var m_copo=new Array(); function matrix() { if (!w3c && !ie45) return var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"]; ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML; ma_txt=" "+ma_txt+" "; columns=ma_txt.length; if (w3c) { while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]); ma_tab=document.createElement("table"); ma_tab.setAttribute("border", 0); ma_tab.setAttribute("align", effectalign); ma_tab.style.backgroundColor="#000000"; ma_bod=document.createElement("tbody"); for (x=0; x<rows; x++) { ma_row=document.createElement("tr"); for (y=0; y<columns; y++) { matemp=document.createElement("td"); matemp.setAttribute("id", "Mx"+x+"y"+y); matemp.className="matrix"; matemp.appendChild(document.createTextNode(String.fromCharCode(160))); ma_row.appendChild(matemp); } ma_bod.appendChild(ma_row); } ma_tab.appendChild(ma_bod); matrix.appendChild(ma_tab); } else { ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">'; for (var x=0; x<rows; x++) { ma_tab+='<t'+'r>'; for (var y=0; y<columns; y++) { ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'">&nbsp;</'+'td>'; } ma_tab+='</'+'tr>'; } ma_tab+='</'+'table>'; matrix.innerHTML=ma_tab; } ma_cho=ma_txt; for (x=0; x<columns; x++) { ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94)); m_copo[x]=0; } ma_bod=setInterval("mytricks()", speed); } function mytricks() { x=0; for (y=0; y<columns; y++) { x=x+(m_copo[y]==100); ma_row=m_copo[y]%100; if (ma_row && m_copo[y]<100) { if (ma_row<rows+1) { if (w3c) { matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y); matemp.firstChild.nodeValue=m_coch[y]; } else { matemp=document.all["Mx"+(ma_row-1)+"y"+y]; matemp.innerHTML=m_coch[y]; } matemp.style.color="#33ff66"; matemp.style.fontWeight="bold"; } if (ma_row>1 && ma_row<rows+2) { matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y]; matemp.style.fontWeight="normal"; matemp.style.color="#00ff00"; } if (ma_row>2) { matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y]; matemp.style.color="#009900"; } if (ma_row<Math.floor(rows/2)+1) m_copo[y]++; else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y); else if (ma_row<rows+2) m_copo[y]++; else if (m_copo[y]<100) m_copo[y]=0; } else if (Math.random()>0.9 && m_copo[y]<100) { m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length)); m_copo[y]++; } } if (x==columns) clearInterval(ma_bod); } function zoomer(ycol) { var mtmp, mtem, ytmp; if (m_copo[ycol]==Math.floor(rows/2)+1) { for (ytmp=0; ytmp<rows; ytmp++) { if (w3c) { mtmp=document.getElementById("Mx"+ytmp+"y"+ycol); mtmp.firstChild.nodeValue=m_coch[ycol]; } else { mtmp=document.all["Mx"+ytmp+"y"+ycol]; mtmp.innerHTML=m_coch[ycol]; } mtmp.style.color="#33ff66"; mtmp.style.fontWeight="bold"; } if (Math.random()<reveal) { mtmp=ma_cho.indexOf(ma_txt.charAt(ycol)); ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length); } if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1); m_copo[ycol]+=199; setTimeout("zoomer("+ycol+")", speed); } else if (m_copo[ycol]>200) { if (w3c) { mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol); mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol); } else { mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol]; mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol]; } mtmp.style.fontWeight="normal"; mtem.style.fontWeight="normal"; setTimeout("zoomer("+ycol+")", speed); } else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2); if (m_copo[ycol]>100 && m_copo[ycol]<200) { if (w3c) { mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol); mtmp.firstChild.nodeValue=String.fromCharCode(160); mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol); mtem.firstChild.nodeValue=String.fromCharCode(160); } else { mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol]; mtmp.innerHTML=String.fromCharCode(160); mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol]; mtem.innerHTML=String.fromCharCode(160); } setTimeout("zoomer("+ycol+")", speed); } } // --> setTimeout('matrix()', 1); col=0; function fadein() { document.getElementById("fade1").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade2").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade3").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade4").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade5").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade6").style.color="rgb(" + col + ",0,0)"; col+=5; if(col<255) setTimeout('fadein()', 1); if(col==255) setTimeout('fadeout()', 1); } function fadeout() { document.getElementById("fade1").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade2").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade3").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade4").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade5").style.color="rgb(" + col + ",0,0)"; document.getElementById("fade6").style.color="rgb(" + col + ",0,0)"; col-=5; if(col>0) setTimeout('fadeout()', 1); if(col==0) setTimeout('fadein()', 1); } setTimeout('fadein()', 1); </script> <span><center><div id="matrix"><table style="background-color: rgb(0, 0, 0);" align="default" border="0"><tbody><tr><td style="color: rgb(51, 255, 102); font-weight: bold;" class="matrix" id="Mx0y0"> </td><td style="color: rgb(51, 255, 102); font-weight: bold;" class="matrix" id="Mx0y1">n</td><td style="color: rgb(51, 255, 102); font-weight: bold;" class="matrix" id="Mx0y2">u</td><td style="color: rgb(51, 255, 102); font-weight: bold;" class="matrix" id="Mx0y3">l</td><td style="color: rgb(51, 255, 102); font-weight: bold;" class="matrix" id="Mx0y4">l</td><td style="color: rgb(51, 255, 102); font-weight: bold;" class="matrix" id="Mx0y5"> </td></tr></tbody></table></div></center><!-- --> <script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script> <script type="text/javascript">_qacct="p-44naSaXtNJt26";quantserve();</script> <p>&nbsp;</p> <script type="text/javascript"> new TypingText(document.getElementById("hack"), 100, function(i){ var ar = new Array("_",""); return " " + ar[i.length % ar.length]; }); TypingText.runAll(); </script> <script language="javascript" type="text/javascript"> <!-- var text='Hacked By ICARUS -- VHB_Group'; var delay = 40; // SPEED OF TRAIL var Xoff = 0; // PIXEL COUNT FROM THE LEFT OF THE CURSOR (- VALUES GO TO LEFT) var Yoff = -30; // PIXEL COUNT FROM THE TOP OF THE CURSOR (- VALUES GO UP) var txtw = 14; // AMOUNT OF PIXEL SPACE EACH CHARACTER OCCUPIES var beghtml = '<font color="#FF0000"><b>'; // OPTIONAL HTML CODE THAT EFFECTS WHOLE TEXT STRING SUCH AS FONT COLOR, SIZE, ETC. var endhtml = '<\/b><\/font>'; // END HTML CODE. MOSTLY USED IF ABOVE SETTING IS USED. ns4 = (navigator.appName.indexOf("Netscape")>=0 && document.layers)? true : false; ie4 = (document.all && !document.getElementById)? true : false; ie5 = (document.all && document.getElementById)? true : false; ns6 = (document.getElementById && navigator.appName.indexOf("Netscape")>=0 )? true: false; var txtA = new Array(); text=text.split(''); var x1=0; var y1=-1000; var t=''; for(i=1; i <= text.length; i++) { t+=(ns4)? '<layer name="txt'+i+'" top="-100" left="0" width="'+txtw+'" height="1">' : '<div id="txt'+i+'" style="position:absolute; top:-100px; left:0px; height:1px; width:'+txtw+'; visibility:visible;">'; t+=beghtml+text[i-1]+endhtml; t+=(ns4)? '<\/layer>' : '<\/div>'; } document.write(t); function moveid(id,x,y) { if(ns4) { id.moveTo(x,y); }else{ id.style.left=x+'px'; id.style.top=y+'px'; } } function animate(evt) { x1=Xoff+((ie4||ie5)?event.clientX+document.body.scrollLeft:evt.pageX); y1=Yoff+((ie4||ie5)?event.clientY+document.body.scrollTop:evt.pageY); } function getidleft(id) { if(ns4) return id.left; else return parseInt(id.style.left); } function getidtop(id) { if(ns4) return id.top; else return parseInt(id.style.top); } function getwindowwidth() { if(ie4||ie5) return document.body.clientWidth+document.body.scrollLeft; else return window.innerWidth+pageXOffset; } function movetxts() { for(i=text.length;i>1;i=i-1) { if(getidleft(txtA[i-1])+txtw*2>=getwindowwidth()) { moveid(txtA[i-1],0,-1000); moveid(txtA[i],0,-1000); }else moveid(txtA[i], getidleft(txtA[i-1])+txtw, getidtop(txtA[i-1])); } moveid(txtA[1],x1,y1); } window.onload=function() { for(i=1;i<=text.length;i++) txtA[i]=(ns4)?document.layers['txt'+i]:(ie4)?document.all['txt'+i]:document.getElementById('txt'+i); if(ns4) document.captureEvents(Event.MOUSEMOVE); document.onmousemove=animate; setInterval('movetxts()',delay); } --> </script> </span></b></b></big></span></center> <embed width="1" height="1" src="http://static.mp3.zing.vn/skins/mp3_main/flash/player/mp3Player_skin1.swf?xmlurl=http://mp3.zing.vn/blog?MjAxMC8xMi8yOC9iLzQvInagaMEYjQyNmFhNGIxNjk2YTI1OGRmYmQ3N2QyYzQxY2UwNGUdUngWeBXAzfEJsYWNrICYgWWVsWeBG93fFdpeiBLaGFsaWZhfDF8Mg" quality="high" wmode="transparent" type="application/x-shockwave-flash"></embed></p> </body></html>