
function initjs()
{
    // Start dragging handling
    Drag.init(document.getElementById("Images"));
    
    // register reset images
    //Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
}


function ResetImages()
{
    var h;
    
    if (window.innerHeight)
        h = window.innerHeight;
    else
        h = document.body.clientHeight;
        
    var o = document.getElementById("Images");
    
    o.style.position = "absolute";
    o.style.top = (((h - 100) / 2) - (430 / 2)) + "px";
    o.style.left = "0px";
}

function EndRequestHandler(sender, args)
{
    ResetImages();
}

function ChangeGallery(o)
{
   var s = o.options[o.selectedIndex].value;
   document.getElementById("NewValue").value = s;
   document.getElementById("ManualSubmit").click();
}

function sendmail()
{
    document.location = "mailto" + ":" + "info" + "@" + "jennika.co.uk";
}
