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=20562993';
}
function getUserID()
{
return '20562993';
}
function getAvatarName()
{
return 'Guest_SugarAssult';
}
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 Gallery
You may upload a file using the upload box below. The size of files
uploaded from your client to the server should not exceed 1024 KB (1 MB) each.
Supported file types are JPG (JPEG), GIF and PNG.
Image stored successfully.
Please assign the image you just uploaded to one of your Albums:
Upload successful!
There was an error uploading your image.
Error message:
Please ensure the image is less than 1024KB, and is a GIF, JPG, or PNG image.
i'm sorry, but i don't see why you think i hate you, i really don't hate you, in fact, i kinda have feelings for you, all i want is for you to be happy, ok? so plz, don't worry about me, ok? i have enough people online thinking i'm a sick, twisted, and very vicious person when i'm not like that at all, ok? i would leave you a gift, but i only have 13 credits :( i'm sowwiez
Hello, This is moonlightglitter2001 coowner of the group furries against animal abuse and we have noticed that you have not ever posted or have not been active lately in the group. we miss you and would like to hear from you more often. So please take this message as a small push to get active and start helping the animals who can't help themselves. Thanks for your support, Moon.
Hello,
This is moonlightglitter2001 from the group furries against animal abuse and we have noticed that you have not ever posted or have not been active lately in the group. we miss you and would like to hear from you more often. So please take this message as a small push to get active and start helping the animals who can't help themselves.
Thanks for your support,
Moon.
Hello im getting married saturday not firday.I have no idea what time it will be but ill let you know soon so dont worry.Your welcome for the invite.Your ''friend'' Death ^^
Hello im haveing a wedding friday and your invited.Invite some of your friends if you want to.Well let me know if you want to come.okay I'll talk to you later bye.
hey saw u were looking for a family member not that i am stalking u lolz jk soo yea message me if there ish an opening lolz ttyl
*leaves paw print* ~lumineon~
XD hallo,juz saw the message on Guest_furry's page......and i wanna be a family member X3 my page is under construction for now,BTW best page ever :D X3