Loading homepage
processing
close window_close

Welcome to the IMVU MySpace importer

Do you have a myspace.com profile page? Enter your full MySpace url here to import your customizations:


This feature is still experimental, so please proceed with caution. If you run into difficulties, please post to the Bugs and Testing forum.
spacer
spacer
About Me
avatar picture
online status
Guest_pix200
Avatar since: 06/15/08

Male
Age: 17
Brazil
Last log on: 08/08/08

"Oi quem quizer me add, fique avontade..."





function swapGalleryPanelColumns(side) { } pendingFlashSwapSide = null; //Thanks to Robert Nyman for the following function (robert [at] robertnyman [dot] com) //Original URL: http://www.robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/#content-col function getStyle(oElm, strCssRule) { var strValue = ""; if(document.defaultView && document.defaultView.getComputedStyle) { strValue = document.defaultView.getComputedStyle(oElm, "").getPropertyValue(strCssRule); } else if(oElm.currentStyle) { strCssRule = strCssRule.replace(/\-(\w)/g, function (strMatch, p1) { return p1.toUpperCase(); }); strValue = oElm.currentStyle[strCssRule]; } return strValue; } function RGBtoHex(R,G,B) { return toHex(R)+toHex(G)+toHex(B); } function toHex(N) { if (N == null) return "00"; N = parseInt(N); if (N == 0 || isNaN(N)) return "00"; N = Math.max(0, N); N = Math.min(N,255); N = Math.round(N); return "0123456789ABCDEF".charAt((N - N % 16) / 16) + "0123456789ABCDEF".charAt(N % 16); } function getPageTextColor() { var bodyTextColor = getStyle(document.getElementById("gallery_panel_body"), "color"); if(bodyTextColor.indexOf("rgb") != -1) { //mozilla - need to parse it out and extract the r,g,b values bodyTextColor = bodyTextColor.slice(4, bodyTextColor.length - 1); //get rid of "rgb()" splitted = bodyTextColor.split(","); r=splitted[0]; g=splitted[1]; b=splitted[2]; //convert to hex bodyTextColor = /*"#" + */RGBtoHex(r, g, b); } if(bodyTextColor.indexOf("#") != -1) bodyTextColor = bodyTextColor.substr(1); return bodyTextColor; } function getPageBGColor() { var bodyBGColor = getStyle(document.getElementById("gallery_panel_body"), "backgroundColor"); if(bodyBGColor.indexOf("rgb") != -1) { //mozilla - need to parse it out and extract the r,g,b values bodyBGColor = bodyBGColor.slice(4, bodyBGColor.length - 1); //get rid of "rgb()" splitted = bodyBGColor.split(","); r=splitted[0]; g=splitted[1]; b=splitted[2]; //convert to hex bodyBGColor = /*"#" + */RGBtoHex(r, g, b); } if(bodyBGColor.indexOf("#") != -1) bodyBGColor = bodyBGColor.substr(1); return bodyBGColor; } function getWidth() { //this function is used by flash to get the panel width, for when we start up. if(isIE) { //IE bug requires we do it this way (!!!!) var galpan = document.getElementById("gallery_panel"); var theid = galpan.parentElement.id; if(theid == "leftColumn") return 570; else return 300; } else { return document.getElementById("gallery_panel").offsetWidth; } } function popImage(iURL, iName, iFeatures) { newWind = window.open(iURL, iName, iFeatures); //return false; } function getUserEditMode() { return false; } function getSelfURL() { //flash will connect to this to get the XML data return 'http://avatars.imvu.com/catalog/mp4/gallery_panel.php?user=27035524'; } function getUserID() { return '27035524'; } function getAvatarName() { return 'Guest_pix200'; } function guShowField(fToHide, fToShow) { jt_ShowNone(fToHide, false); jt_ShowNone(fToShow, true, 'block'); } function doOnScroll() { //alert("doOnScroll(): scrollTop="+document.body.scrollTop+", scrollHeight="+document.body.scrollHeight+", clientHeight="+document.body.clientHeight); if(document.body.scrollTop <= document.body.scrollHeight - document.body.clientHeight) { document.getElementById("veilDiv").style.top = document.body.scrollTop; document.getElementById("veilDiv").style.left = document.body.scrollLeft; } //> } function doOnResize() { document.getElementById("veilDiv").style.width = document.body.clientWidth; document.getElementById("veilDiv").style.height = document.body.clientHeight; } function lockUploadForm(whichFormName) { thisObj = document.forms[whichFormName]; thisObj.uploadSubmitBtn.disabled = true; thisObj.uploadCancelBtn.disabled = true; thisObj.uploadSubmitBtn.value = "Please wait..."; thisObj.uploadSubmitBtn.blur(); document.getElementById("veilDiv").style.display = "block"; window.onscroll = doOnScroll; window.onresize = doOnResize; doOnResize(); showPleaseWait(); return true; } function unlockUploadForm(whichFormName) { thisObj = document.forms[whichFormName]; thisObj.uploadSubmitBtn.disabled = false; thisObj.uploadCancelBtn.disabled = false; thisObj.uploadSubmitBtn.value = "Submit"; document.getElementById("veilDiv").style.display = "none"; window.onscroll = null; window.onresize = null; return true; } function showPhase0() { resetUploadFields(); document.getElementById("phase0").style.display = "block"; document.getElementById("phase1").style.display = "none"; document.getElementById("phase2").style.display = "none"; document.getElementById("uploadError").style.display = "none"; document.getElementById("uploadPleaseWait").style.display = "none"; arrangeColumns(); } function showPhase1() { resetUploadFields(); document.getElementById("phase0").style.display = "none"; document.getElementById("phase1").style.display = "block"; document.getElementById("phase2").style.display = "none"; document.getElementById("uploadError").style.display = "none"; document.getElementById("uploadPleaseWait").style.display = "none"; arrangeColumns(); } function showPhase2() { resetUploadFields(); document.getElementById("phase0").style.display = "none"; document.getElementById("phase1").style.display = "none"; document.getElementById("phase2").style.display = "block"; document.getElementById("uploadError").style.display = "none"; document.getElementById("uploadPleaseWait").style.display = "none"; arrangeColumns(); } function showError() { resetUploadFields(); document.getElementById("phase0").style.display = "none"; document.getElementById("phase1").style.display = "none"; document.getElementById("phase2").style.display = "none"; document.getElementById("uploadError").style.display = "block"; document.getElementById("uploadPleaseWait").style.display = "none"; arrangeColumns(); } function showPleaseWait() { document.getElementById("phase0").style.display = "none"; document.getElementById("phase1").style.display = "none"; document.getElementById("phase2").style.display = "none"; document.getElementById("uploadError").style.display = "none"; document.getElementById("uploadPleaseWait").style.display = "block"; arrangeColumns(); } function resetUploadFields() { document.getElementById("guFileWrapper").style.border=""; document.getElementById("guFileErrorMsg").innerHTML=""; document.getElementById("error_msg").innerHTML=""; document.getElementById("imageTitle").value=""; document.getElementById("imageAlbum").options.length = 0; } function writeGallerySWF() { var galSwfObj = new SWFObject("/catalog/mp4/gallery.swf", "flashGallery", "100%", "100%", "8", "#FFFFFF"); galSwfObj.addParam("wmode", "transparent"); galSwfObj.write("galleryFlashDIV"); } function triggerReload() { //reloads the flash if(flashGallery) { //in the future we need a less invasive way of reloading (flash-managed reload)... flashGalleryDiv.removeChild(flashGallery); writeGallerySWF(); } //else alert("cant reload flash - no flashGallery"); }
Special Someone
Guest_DakotahErin
Grande irma pra mim, dakota gosto muito de voce viu...
taste very of you, kisses...
My Groups Check Out IMVU Groups!
group image for Amo o Rio de Janeiro... Sou carioca!
Amo o Rio de Janeiro... Sou carioca!

12 posts from 64 members
group image for Brasileiros / Brazilians
Brasileiros / Brazilians

509 posts from 1243 members
group image for Glamour babes...x
Glamour babes...x

359 posts from 288 members
My Room
My Videos
My Wish List
*L* Halloween Bats+StarsTuck:Angel Babydollsspacerspacerspacer
My Rankings More info
spacer
friendly Buddies 72
frame
visitors Visitors 90
frame
kharma Gifts 4
frame
generosity Generosity 0
frame

spacer
My Music
spacer
Advertising Hide advertising
Contact Me
My Messages Leave a message / gift
avatar image
online status
08/07/08 Guest_debbiiequat

amiga... vc hj tava online eu tava te chamando, pq n mim acc ?=/ bjus preciso falar contigo..

avatar image
online status
08/06/08 Guest_jhessika3

Oiii desculpa a demora mais eu estou com outro avatar me add é a Panteracordepink!! ^^ bjssssssss no s2

avatar image
online status
07/28/08 Guest_Gu1lh3rm3

Tudoo e com voceee? voce lembra de mimm? akele ke namorava a dakota! ela joga ainda ?? pq numk mais vi ela...

avatar image
online status
07/24/08 Guest_KarinYamasakiBR

c vc recebeu minha msg, eu confundi tdo mas eu sou a fahelia!

avatar image
online status
07/24/08 Guest_KarinYamasakiBR

eu soh a fahelia e talz agr lembrei q vc escreveu akela msg faz tempo eu criei nova conta e feliz dia do amigo atrasado²

avatar image
online status
07/22/08 Guest_HinaHyuuguinha

Desculpa por soh devolver agr, mas tava sem net ;P mas entao..c vc nao sabe..sou a sua mana (Fahelia) :)

avatar image
online status
07/21/08 Guest_Mandyev

fliz dia do amigu atrasadu.bjux Mandy

avatar image
online status
07/12/08 Guest_s2BettyBoops2

Pela amizade que você me devota, por meus defeitos que você nem nota... Por meus valores que você aumenta, por minha fé que você alimenta... Por esta paz que nós nos transmitimos, por este pão de amor que repartimos... Pelo silêncio que diz quase tudo, por este olhar que me reprova mudo... Pela pureza dos seus sentimentos, pela presença em todos os momentos... Por ser presente, mesmo quando ausente, por ser feliz quando me vê contente... Por este olhar que diz " Amigo, vá em frente!" Por ficar triste, quando estou tristonho, por rir comigo quando estou risonho... Por repreender-me, quando estou errado, por meu segredo, sempre bem guardado... Por seu segredo, que só eu conheço, e por achar que apenas eu mereço... Por me apontar pra DEUS a todo o instante, por esse amor fraterno tão constante... Por tudo isso e muito mais eu digo DEUS TE ABENÇOE!!!!!

avatar image
online status
07/10/08 Guest_CalinaLuvsYa

i understand u,thanx alot.luv ya

avatar image
online status
07/10/08 MoreninhaxP

Eu vou bem e vc? beijos

avatar image
online status
07/09/08 Guest_jamilemile2

brigado para vc tambeem !!

avatar image
online status
07/09/08 Guest_s2BettyBoops2

Oie como vc esta? bjos*A minha primeira vez... O céu estava claro, A lua quase dourada... Ali no campo, eu e ela, E não se via mais nada! A pele suave, As ancas expostas, E eu tocando de leve O macio de suas costas... Não sabendo começar, Olhei o corpo esguio. Decidi por as mãos Sobre seu peito macio... Eu sentia medo! Meu coração forte batia, Enquanto ela bem lentamente, As firmes pernas abria... Vitória! Eu consegui! Tudo então melhorou... Pelo menos desta vez, O líquido branco jorrou ! Finalmente tudo acabou, Mas quase que eu saio de maca! Foi assim a primeira vez... Que eu tirei leite de uma vaca!!! Você pensou que fosse o quê? Malicioso(a)... =P. KKKKKKK. Bjos tenha um otimo dia!!!

avatar image
online status
07/08/08 Guest_jamilemile2

oiiiiiiii é eu jamileee sua amiga brigadu por mi add !!!

avatar image
online status
07/08/08 Guest_s2BettyBoops2

Que nada é sempre bom poder agradar pessoas tão querida. Te adolo !!! Mais um dia lhe é dado para viver. Muitos estao sendo convocados pelo Criador para encerrarem aqui o tempo da sua peregrinaa§ao na terra. Você acordou à vida e vai vivê-la, nao porque merea§a mais do que outros, e sim porque a bondade de Deus lhe quer dar mais oportunidades para praticar o bem, amar ao seu irmão e amealhar maiores méritos para a conta-corrente da sua vida, a fim de que os seus débitos sejam muito menores do que o seu credito diante do verdadeiro Juiz. Tenha um excelente dia! *-* Bjos *-*

avatar image
online status
07/07/08 Guest_s2BettyBoops2

Mesmo um sonho impossível... Amar... ainda que sem retorno... Chorar....quando tiver vontade... Sorrir Sempre Viver... como se cada minuto fosse o último de sua vida Não tenha medo do seu coração Não tenha medo do amanhã Não tenha medo de sentir... de buscar ... Não tenha medo de confiar no seu instinto... Não tenha medo de dizer para alguém o quanto ela é importante pra você Não tenha medo de nada Simplesmente seja você e sonhe... *-* Bjos e volte sempre!!! *-*

avatar image
online status
07/06/08 Guest_CalinaLuvsYa

thanx 4 stoppin by ma page.luv ya add me

avatar image
online status
07/06/08 MoreninhaxP

lol , sorry =/ , maiis agora to deixano Oiiiii , aeuaheau , ii claro ki eu add =]

avatar image
online status
07/04/08 Guest_ChocoomentaH

Briigadooo moooxa! se cuuida ... Bjo

avatar image
online status
07/03/08 Guest_s2BettyBoops2

Oie da proxima vez que visitar deixe sua marquinha. bjos*

avatar image
online status
07/03/08 Guest_RCmusic

:**

avatar image
online status
07/02/08 Guest_Fahelia

Tuuudim.

avatar image
online status
06/30/08 Guest_RCmusic

ja esta add então hehehe boa semana

avatar image
online status
06/30/08 2008sourie2008

que linda a sua pagina beijinhos