
function switch_display(id)
{
        document.getElementById(id).style.display = (document.getElementById(id).style.display=='none') ? 'block' : 'none';
}

function switch_display_on(id)
{
        document.getElementById(id).style.display = 'block';
}

function switch_display_off(id)
{
        document.getElementById(id).style.display = 'none';
}


function isEmpty(id)
{

    if (document.getElementById(id).value == "") {
        return true
    } else {
        return false
    }
}

function checkUploadField(warningTxt)
{

    if (isEmpty('firstpicturefield')) {

        document.uploadfields.submit()

    } else {

        if(confirm(warningTxt)) {
            document.uploadfields.submit()
        }
    }

function popmusic(URL) {
var popup_width = 300
var popup_height = 200
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,left = 100,top = 100,width='+popup_width+',height='+popup_height+'');");
}}

