ElvisCommunity

ELVIS FANTASAY+ spankox PRESENTS I BELIEVE AS REAL AS IT GETS

You need Adobe Flash Player 9 to view this widget.

Get Adobe Flash player

  • Comments: 5
    Views: 903

Comments




  • i would like to decatate this song which has been one of my favorites since i can remember elvis recoring it  my sister passed away last month on the 31st of may belinda is the only sister we had in our family we was really close and it would mean alot to me if i could use it as a tribute song to my loving and caring and god loving sister who is who she is now in the hands of the one person she lived for her whole life, i love you belinda sue wright  you are  the only one that really touched my heart with all the love you gave your family and  to the lord you lived the life  so when god took you home you would be with him and the rest of the familthat god has called on home it will be so hard not seeing or talking to you for a while,   it hurts so much but  it also helps in knowing you will never have to suffer no more or take them pain pills no more which you wanted off of  since you was with me at my apartment the last 3 and a half weeks before you went back home  we really had a great time looking at all the old family albums you was always worried about your ae and not wanting to get any older but i wish i could post a photo of you here because you sure did not look   61 years young, i love you belinda this songs goes to you because if not for you wanting to go to church when i was just a baby we may have never have known god or who he is, we will soon be with each other again and also be with the one that really loves us all, god take care of my sister i do not know how i will make it without her we was always going places together just to get out and enjoy the    world you put us on, there was so much to do and see we just needd more time    but god seen differant for a reason it could have been me he took that day on  the weekend we was going to put ne flowers on everyone resting place but never got it fdone  will be so harrd to go out there now  and not have you in the car with me but i will be putting new flowrs and a light on your resting place it has not been to long ago we both was just out there a few days before memorial day why we went early there had to be a reson , i just know i have grown   a bit older myself since you left on  that last day of may 2011, our only sister belinda , we all love and misss you  and always will but we will always have you in our hearts and holding a photo of you and the rest god has    already taken on to heaven        see you  soon at the golden gate, belinda  what life would have been without you  there would not have been  tyou really made our life as a family with the rest of your 5 brothers and mom and dad     you really made it a loving family just what god wnted  us to be, your now older brother, mike Cry

    mdwright48, 8 months ago | Flag
  • always liked this song but now they really made the background sound so much more powerfull with todays tecnologey and sound, loved it, hope to hear more, great work


    // <![CDATA[ /********************************************************
    This Script will be included in all web pages
    to show an Icon on Mouse over,

    Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content

    ********************************************************/
    var tmppluginServername = "http://www.zoominto.com/software/ieplugin/";

    var versionswf="1100";

    var tmppluginSwfname=tmppluginServername + "imgviewerpremium" + versionswf + ".swf";

    var protocol = "http://";

    var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

    plugin_run();

    function BrowserZoomPlugin() {
    var ua, s, i;
    this.isIE = false;
    this.isNS = false;
    this.version = null;
    ua = navigator.userAgent;
    s = "MSIE";
    if ((i = ua.indexOf(s)) >= 0) {
    this.isIE = true;
    this.version = parseFloat(ua.substr(i + s.length));
    return;
    }
    s = "Netscape6/";
    if ((i = ua.indexOf(s)) >= 0) {
    this.isNS = true;
    this.version = parseFloat(ua.substr(i + s.length));
    return;
    }
    s = "Gecko";
    if ((i = ua.indexOf(s)) >= 0) {
    this.isNS = true;
    this.version = 6.1;
    return;
    }
    }

    var browser = new BrowserZoomPlugin;
    var dragObj = new Object;
    dragObj.zIndex = 0;

    function zoominto_dragStart(event, id) {
    var el;
    var x, y;
    if (id) {
    dragObj.elNode = document.getElementById(id);
    } else {
    if (browser.isIE) {
    dragObj.elNode = window.event.srcElement;
    }
    if (browser.isNS) {
    dragObj.elNode = event.target;
    }
    if (dragObj.elNode.nodeType == 3) {
    dragObj.elNode = dragObj.elNode.parentNode;
    }
    }
    if (browser.isIE) {
    x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
    y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
    }
    if (browser.isNS) {
    x = event.clientX + window.scrollX;
    y = event.clientY + window.scrollY;
    }
    dragObj.cursorStartX = x;
    dragObj.cursorStartY = y;
    dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10);
    dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10);
    if (isNaN(dragObj.elStartLeft)) {
    dragObj.elStartLeft = 0;
    }
    if (isNaN(dragObj.elStartTop)) {
    dragObj.elStartTop = 0;
    }
    dragObj.elNode.style.zIndex = ++dragObj.zIndex;
    if (browser.isIE) {
    document.attachEvent("onmousemove", zoominto_dragGo);
    document.attachEvent("onmouseup", zoominto_dragStop);
    window.event.cancelBubble = true;
    window.event.returnValue = false;
    }
    if (browser.isNS) {
    document.addEventListener("mousemove", zoominto_dragGo, true);
    document.addEventListener("mouseup", zoominto_dragStop, true);
    event.preventDefault();
    }
    }


    function zoominto_dragGo(event) {
    var x, y;
    if (browser.isIE) {
    x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
    y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
    }
    if (browser.isNS) {
    x = event.clientX + window.scrollX;
    y = event.clientY + window.scrollY;
    }
    dragObj.elNode.style.left = dragObj.elStartLeft + x - dragObj.cursorStartX + "px";
    dragObj.elNode.style.top = dragObj.elStartTop + y - dragObj.cursorStartY + "px";
    if (browser.isIE) {
    window.event.cancelBubble = true;
    window.event.returnValue = false;
    }
    if (browser.isNS) {
    event.preventDefault();
    }
    }


    function zoominto_dragStop(event) {
    if (browser.isIE) {
    document.detachEvent("onmousemove", zoominto_dragGo);
    document.detachEvent("onmouseup", zoominto_dragStop);
    }
    if (browser.isNS) {
    document.removeEventListener("mousemove", zoominto_dragGo, true);
    document.removeEventListener("mouseup", zoominto_dragStop, true);
    }
    }






    function imgplayerprogress_DoFSCommand(command, args) {
    var imgplayerprogressObj = isInternetExplorer ? document.all.imgplayerprogress : document.imgplayerprogress;
    }






    function zoominto_addElement(divIdName, htmlval) {
    try {

    var newdiv = document.createElement("div");
    newdiv.setAttribute("id", divIdName);
    newdiv.setAttribute("title", "");
    newdiv.style.position = "absolute";
    newdiv.style.display = "none";
    newdiv.innerHTML = htmlval;

    document.body.appendChild(newdiv);;
    } catch (e) {
    }
    }



    function zoominto_addmyelems(divIdName, htmlval) {
    try {

    var newdiv = document.createElement("div");
    newdiv.setAttribute("id", divIdName);
    newdiv.innerHTML = htmlval;

    document.body.appendChild(newdiv);;
    } catch (e) {
    //_L(e);
    }
    }


    function zoominto_initializelements() {

    zoominto_addElement("plugpanel", "ZoomInto: Pictures, Images and Photos ");
    zoominto_addmyelems("plugincheck_0909", "
    ");
    }


    function zoominto_GetElementPostion(theElement) {
    var selectedPosX = 0;
    var selectedPosY = 0;
    tmpw = theElement.width;
    tmph = theElement.height;
    while (theElement != null) {
    selectedPosX += theElement.offsetLeft;
    selectedPosY += theElement.offsetTop;
    theElement = theElement.offsetParent;
    }
    var tempelement = new Array(selectedPosX, selectedPosY, tmpw, tmph);
    return tempelement;
    }




    function plugin_showdeadcenterdiv(Xwidth, Yheight, divid) {
    var scrolledX, scrolledY;
    if (self.pageYOffset) {
    scrolledX = self.pageXOffset;
    scrolledY = self.pageYOffset;
    } else if (document.documentElement && document.documentElement.scrollTop) {
    scrolledX = document.documentElement.scrollLeft;
    scrolledY = document.documentElement.scrollTop;
    } else if (document.body) {
    scrolledX = document.body.scrollLeft;
    scrolledY = document.body.scrollTop;
    }
    var centerX, centerY;
    if (self.innerHeight) {
    centerX = self.innerWidth;
    centerY = self.innerHeight;
    } else if (document.documentElement &&
    document.documentElement.clientHeight) {
    centerX = document.documentElement.clientWidth;
    centerY = document.documentElement.clientHeight;
    } else if (document.body) {
    centerX = document.body.clientWidth;
    centerY = document.body.clientHeight;
    }
    var leftOffset = scrolledX + (centerX - Xwidth) / 2;
    var topOffset = scrolledY + (centerY - Yheight) / 2;
    var o = document.getElementById(divid);
    var r = o.style;
    r.position = "absolute";
    r.top = topOffset + "px";
    r.left = leftOffset + "px";
    r.display = "block";
    }


    function pluginalertShow(layerid) {
    document.getElementById(layerid).style.visibility = "visible";
    document.getElementById(layerid).style.display = "block";
    plugin_showdeadcenterdiv(280, 115, layerid);
    document.getElementById("plugin_btn_activate").focus();
    }


    function pluginalerthide(layerid) {
    document.getElementById(layerid).style.visibility = "hidden";
    document.getElementById(layerid).style.display = "none";
    }




    function zoom_getValidString(){

    return "&isValidviewer=1";// all things are valid


    }


    function zoominto_showflash() {

    try{
    var divimgplayer = document.getElementById("div_plugin_img_player");
    divimgplayer.style.display = "block";
    divimgplayer.style.visibility = "visible";

    plugin_showdeadcenterdiv(600, 371, "div_plugin_img_player");
    zoominto_setImage(document.getElementById("plugpanel").title);



    } catch (e) {
    }

    }


    function zoominto_closeflash() {
    var divimgplayer = document.getElementById("div_plugin_img_player");
    divimgplayer.style.display = "none";
    divimgplayer.style.visibility = "hidden";
    }


    function hidezoomicon(){
    document.getElementById("plugpanel").style.visibility = "hidden";

    }

    function getMouseX( e ) {

    return e.pageX

    || ( e.clientX + ( document.documentElement.scrollLeft

    || document.body.scrollLeft ) );

    }

    function getMouseY( e ) {

    return e.pageY

    || ( e.clientY + ( document.documentElement.scrollTop

    || document.body.scrollTop ) );

    }

    function dhtmlLoadScript(url)
    {
    var e = document.createElement("script");
    e.src = url;
    e.type="text/javascript";
    // document.getElementByTagName("head")[0].appendChild(e);

    document.getElementById("addiv").appendChild(e);
    }


    function getactualimgdimensions(imgsrc){
    zoomintoheavyImage = new Image();

    zoomintoheavyImage.src = imgsrc

    var tempelement = new Array(zoomintoheavyImage.width, zoomintoheavyImage.height);
    return tempelement;



    }
    function plugin_run() {


    var image = document.getElementsByTagName("img");
    var totimgLength=image.length;


    zoominto_initializelements();

    for (var i = 0; i < image.length; i++) {

    if (image[i].className.match("myplug_img")){
    image[i].onmouseout = function (evt) {
    document.getElementById("plugpanel").style.visibility = "hidden";
    }

    }// Zoom icon hidden

    zoomarrdim= getactualimgdimensions(image[i].src);
    //arrdim[0] - width arrdim[1] - height

    if (!image[i].className.match("myplug_img") &&
    zoomarrdim[0] > 50 && zoomarrdim[1] > 60) {

    image[i].onmouseover = function () {imgvals = zoominto_GetElementPostion(this);

    document.getElementById("plugpanel").style.display = "block";document.getElementById("plugpanel").style.visibility = "visible";document.getElementById("plugpanel").style.left = imgvals[0] + "px";document.getElementById("plugpanel").style.top = imgvals[1] + "px";document.getElementById("plugpanel").title = this.src;};
    image[i].onmouseout = function (evt) {

    imgvals = zoominto_GetElementPostion(this);

    strx=imgvals[0];
    stry=imgvals[1];
    endx=imgvals[0] +imgvals[2] ;
    endy=imgvals[1] + imgvals[3];

    tmpcurx=evt.pageX;
    tmpcury=evt.pageY;

    if(tmpcurx > strx && tmpcurx stry && tmpcury < endy ){

    l=1
    }
    else{
    document.getElementById("plugpanel").style.visibility = "hidden";

    }


    };




    }// End of Condition Image smaller

    if(zoomarrdim[0] == 1 && zoomarrdim[1] == 1){
    // remove Image element
    image[i].style.display="none";
    image[i].style.visibility="hidden";
    }

    }
    }




    function zoominto_URLEncode(clearString) {
    var output = "";
    var x = 0;
    clearString = clearString.toString();
    var regex = /(^[a-zA-Z0-9_.]*)/;
    while (x < clearString.length) {
    var match = regex.exec(clearString.substr(x));
    if (match != null && match.length > 1 && match[1] != "") {
    output += match[1];
    x += match[1].length;
    } else {
    if (clearString[x] == " ") {
    output += "+";
    } else {
    var charCode = clearString.charCodeAt(x);
    var hexVal = charCode.toString(16);
    output += "%" + (hexVal.length < 2 ? "0" : "") + hexVal.toUpperCase();
    }
    x++;
    }
    }
    return output;
    }


    function Closeiepluginpanel() {
    closeflash();
    }


    function zoominto_setImage(txturl) {
    zoominto_changeobject(txturl);
    }


    function logme(txtstr) {
    // try {
    //alert(txtstr);
    return "";

    }


    function zoominto_changeobject(url) {
    //Method to Display the Viewer for Image
    trkval = "?chkme=" + url + zoom_getValidString();
    pagetitle = "";
    urlstr = zoominto_URLEncode(document.location);



    document.getElementById("div_plugin_img_player").innerHTML = "
    comment
    \n";



    }






    ]]>
    mdwright48, 1 year ago | Flag
  • Great Video, this song says so much;;;;;;;;;;l;;r

    Former Member , 3 years ago | Flag
  • I think this came out great, just beautiful.

    Pippi, 3 years ago | Flag
  • I Like it,but my favorite is the Hawaii one, because the guy with gray hair getting out og the black vehicle it really does look like Elvis and I would give anything to see him again!!!!

    Former Member , 3 years ago | Flag

Inappropriate Flag

Flagging notifies the ElvisCommunity webmaster of inappropriate content. Please flag any messages that violate the Terms of Service. Please include a short explanation why you're flagging this message. Thank you!

If you believe this content violates the Terms of Service, please write a short description why. Thank you.

Inappropriate Comment Flag

Flagging notifies the ElvisCommunity webmaster of inappropriate content. Please flag any messages that violate the Terms of Service. Please include a short explanation why you're flagging this message. Thank you!

Email Friends

Your First Name (optional)

Email Addresses (comma separated)

Import friends

Message to Friends (optional)

Are you human?

Or, you can forward this video with your own email application.

Terms of Service

toolbar powered by Conduit

Elvis Community © 2010 All Rights Reserved | Site by RedgeDesign | Terms of Service




mock rpx login link