﻿function OpenPicture(url)
{
    window.open(url,"ShowPicture","height=600,width=800,status=no,toolbar=no,menubar=no,location=no,resizable=yes",true);
}
function BookWrite_Random()
{
    var e;
    var i;
    var p = new Array(5);
    
    i = Math.round(Math.random() * 10);
    while (i > 4)
    {
        i = i - 5;
    }
    
    p[0] = "Images/hihiAlfred.jpg";
    p[1] = "Images/hihiPene.jpg";
    p[2] = "Images/hihiApina.jpg";
    p[3] = "Images/hihiMalt.jpg";
    p[4] = "Images/hihiDreath.jpg";

    e = document.getElementById("RandomPicture");
    if (e != null)
    {
        e.src = p[i];
        //e.style.visibility = "visible";
    }
}
function BookWrite_MyPicture(Me, url)
{
    var e;
    var f;
    
    e = document.getElementById("ctl00_cphContent_MyPicture");
    if (e != null)
    {
        f = Me.options[Me.options.selectedIndex].value;
        if (f != "")
        {
            e.src = url + f;
            e.style.visibility = "visible";
        }
        else
        {
            e.src = ""
            e.style.visibility = "hidden";
        }
    }
}
function BookWrite_AddEmoticon(Me)
{
    var e;
    e = document.getElementById("ctl00_cphContent_txtText")
    if (e != null)
    {
        e.value = e.value + " ::" + Me.alt;
    }    
    else
    {
        alert("Nu e det nåt jävla skit. Skvallra till miwi om vad du gjort eller försöker göra...");
    }
}
function TrapEnter(e) 
{
    if (window.event) 
    {
        if (window.event.keyCode == 13)
        {
            window.event.keyCode = 9;
        }    
    }
    else if (e)
    {
        if (e.which == 13)
        {
            //e.which = 9;
            e.preventDefault();
        }        
    }
}

