function turnOnForm()
{
    document.getElementById('orderform').style.display='block';
    document.getElementById('enablerButton').style.display='none';
}
function checkform(frm)
{
    var errmsg='';
    var errtext = 'Udfyld alle felter';
    for (i=0; i < frm.length; i++)
    {
        // Test on ID'd form values
        if (frm[i].id != '')
        {
            // See if the VALUE's empty
            if ( frm[i].value == '' )
            {
                errmsg += frm[i].id + ' er tom.\n';
            }

        }
    }
    if (errmsg != '')
    {
        alert ( errtext );
        return false;
    }
    else
    {
        return true;
    }

}

function zoomimage(path_to_file)
{
 html = "<html><head><title>Plantesamlingen.dk</title>" +
  "</head><body leftmargin='0' " +
  "marginwidth='0' topmargin='0' marginheight='0'>" +
  "<img src='" + path_to_file + "' border='0' name='image' " +
  "onload='window.resizeTo(document.image.width,document.image.height)' onclick='window.close()' ></body></html>";
popup=window.open('','image','width=100,height=100,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
 popup.document.open();
 popup.document.write(html);
 popup.focus();
 popup.document.close()
}
