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
HotLoveE
spacer
About Me
avatar picture
online status


HotLoveE
Avatar since: 10/02/06

Female
Age: 98
France
Last log on: 10/05/08

"My Secret Love ..."

View my pictures



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=4924986'; } function getUserID() { return '4924986'; } function getAvatarName() { return 'HotLoveE'; } 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"); }
My Music

Listen to 'Trouble' at iTunes

Listen to 'Earth... Peace' at iTunes

Listen to 'Ya Bent El Eh' at iTunes

Listen to 'Best of Me' at iTunes

Listen to 'Baddy Doub' at iTunes

Listen to 'Careless Whispers: T...' at iTunes

Listen to 'Taking Chances' at iTunes

Listen to 'Marc Anthony - The C...' at iTunes

Listen to 'Lady in Red: The Ver...' at iTunes

Listen to 'Waheshni' at iTunes

Listen to 'Laundry Service' at iTunes

Listen to 'Kammel Kalamak' at iTunes

Listen to 'The Bodyguard: Origi...' at iTunes

Listen to 'The Ultimate Jesse C...' at iTunes

Listen to 'Massari' at iTunes

Listen to 'Pussycat Dolls - Liv...' at iTunes

Listen to 'Lost Highway' at iTunes

Listen to 'Enrique' at iTunes
Special Someone Remove
HotLoveE has no special someone.
littleboneta
bonbonaya alby ana bymooot feky Rbna y7meky amowa :***
perfymaya
More than sis ..Friend .. Twinz 2 my Soul.. She an angel ..luv u :**



My Wish List
My Groups Check Out IMVU Groups!


group image for !!! imvu latino !!!
!!! imvu latino !!!

175407 posts from 14804 members
group image for Egyptians
Egyptians

52 posts from 164 members
group image for MASR OM ELDONIA
MASR OM ELDONIA

10 posts from 51 members
group image for France - French
France - French

450 posts from 1675 members
group image for Q8.Lover
Q8.Lover

1119 posts from 1056 members
group image for Hottest IMVU Girls
Hottest IMVU Girls

2748 posts from 10767 members
group image for Poetic Passions N Business
Poetic Passions N Business

8133 posts from 670 members
spacer



sticker_4924986_8242224 sticker_4924986_31616461 sticker_4924986_31688711 sticker_4924986_31688751 sticker_4924986_31689447 sticker_4924986_32325196 sticker_4924986_32772393 sticker_4924986_33591086 sticker_4924986_33973087 sticker_4924986_33973112 sticker_4924986_34373719 sticker_4924986_34877996 sticker_4924986_34878066 sticker_4924986_34878106 sticker_4924986_34878395 sticker_4924986_35271271 sticker_4924986_35534507 sticker_4924986_35534662 sticker_4924986_35876814 sticker_4924986_36047820 sticker_4924986_36569509 sticker_4924986_36611607 sticker_4924986_36657203 sticker_4924986_37568014 sticker_4924986_40852545 sticker_4924986_40869330 sticker_4924986_40873061