<!-- Begin

function makePath(level) {

    var path = "";

    if(level == "one") {
        path = "../";
    }
    if(level == "two") {
        path = "../../";
    }
    if(level == "three") {
        path = "../../../";
    }
    if(level == "four") {
        path = "../../../../";
    }

    return path;
}


function getPic(level, page) {

    var my_array = new Array();
    var pic = "";

    //var path = makePath(level);

    var url = '<a href="http://thebroadroom.net/site_tools/childrens_art.html" target="_blank">';

    if(page == "life_of_josephine.html") {

        my_array[0] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog.jpg" width=356 height=463></a>';
        my_array[1] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog1.jpg" width=346 height=446></a>';
        my_array[2] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog2.jpg" width=350 height=450></a>';
        my_array[3] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog3.jpg" width=350 height=447></a>';
        my_array[4] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog4.jpg" width=350 height=457></a>';
        my_array[5] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog5.jpg" width=360 height=473></a>';
        my_array[6] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog6.jpg" width=350 height=451></a>';
        my_array[7] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog7.jpg" width=345 height=456></a>';
        my_array[8] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog8.jpg" width=319 height=446></a>';
        my_array[9] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog9.jpg" width=352 height=449></a>';
        my_array[10] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog10.jpg" width=360 height=454></a>';
        my_array[11] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog11.jpg" width=305 height=399></a>';
        my_array[12] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog12.jpg" width=312 height=469></a>';
        my_array[13] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog14.jpg" width=425 height=274></a>';
        my_array[14] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog15.jpg" width=325 height=426></a>';
        my_array[15] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog16.jpg" width=343 height=444></a>';
        my_array[16] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog17.jpg" width=304 height=394></a>';
        my_array[17] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog18.jpg" width=375 height=267></a>';
        my_array[18] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog19.jpg" width=365 height=482></a>';
        my_array[19] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog20.jpg" width=350 height=464></a>';
        my_array[20] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog21.jpg" width=375 height=484></a>';
        my_array[21] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog22.jpg" width=350 height=449></a>';
        my_array[22] = url + '<img border=0 vspace=8 src="http://thebroadroom.net/images/josephine/blog23.jpg" width=323 height=424></a>';




    }

    if(my_array != null) {

        pic = my_array[Math.floor(Math.random() * my_array.length)];
    }

    return pic;

}


// End -->