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


Dimooon
Avatar since: 12/01/07

Male
Age: 19
Greece
Last log on: 08/29/08

"Hey! Wtf :)"

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=19671916'; } function getUserID() { return '19671916'; } function getAvatarName() { return 'Dimooon'; } 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"); }
spacer
Special Someone
JoshCookay15
He is myne Littel Bro :D
http://s26.photobucket.com/albums/c139/DUDE_915_05/?action=view¤t=foto_19179.gif Devil May Cry 3: DanteSee More Devil May Cry 3: Dante's Awakening Various at IGN.com
My Blog View all posts
Loading blog...
  view this blog as RSS
My Rankings More info
spacer
friendly Buddies 168
frame
visitors Visitors 857
frame
kharma Gifts 17
frame
generosity Generosity 23
frame

spacer
My Wish List
unaswred-suicide silenceAngel TagTLM-BLOOD n'ROSE Guitar#7 Mick Thompson GuitarEvil Tag
Dark TagAngerfist- Like ThisDimebag Tribute Guitar m32 Sound PackThe Evil Ring (Sound)(L)
666 TagHHZ- Blame ItCorpse Paint [Male]The Sinister AwakeningCorpse Paint [Male]
Death Tagxmx. Milks PunishmentBLOOD SPLATTERED T [BC]spacerspacer
Contact Me



sticker_19671916_26304310 sticker_19671916_26375468 sticker_19671916_27142306 sticker_19671916_29089609 sticker_19671916_35274849 sticker_19671916_35578007 sticker_19671916_35578466 sticker_19671916_35628640 sticker_19671916_35630396 sticker_19671916_35630447 sticker_19671916_35631143 sticker_19671916_35658300 sticker_19671916_35658310 sticker_19671916_35658329 sticker_19671916_35679250 sticker_19671916_35896255 sticker_19671916_36260435