<!--
/*
Функция показывает и прячет блок текста на странице
*/
function toggleMenu(currMenu)
{
         if (document.getElementById)
         {
                 thisMenu = document.getElementById(currMenu).style
                 if (thisMenu.display == "block")
                 {
                     thisMenu.display = "none"
                 }
                 else
                 {
                     thisMenu.display = "block"
                 }
                 return false
         }
         else
         {
                 return true
         }
}
function showColor(val)
{
  document.adding_foto_to_gallery.foto_fonn.value = val;
}

function showfoto(xtheme, xfold, xname, xbg){
window.open("/"+ xtheme +"/" + xfold +"/fullscreen.php?fullfoto=" + xname + "&bgcolor=" + xbg, "_blank",
"width="+(screen.availWidth)+",height="+(screen.availHeight)+",status=no,resizable=no,directories=no,scrollbars=yes,fullscreen=yes,toolbar=no,menubar=no,left=0,top=0")
}

function change_pic(string){
    document.getElementById("MyImage").src = 'images/topaz_adjust/' + string;
}


//-->