 //Функции, очищающие форму от текста при нажатии на нее курсора 
function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } }
function doDefault(theText) { if (theText.value == "") { theText.value = theText.defaultValue } }

//Функции, осуществляющие предварительную загрузку изображений

//Функция, открывающая невидимый блок
function openClose(divid)
{

if(document.getElementById(divid).style.display=="none")
{
document.getElementById(divid).style.display="inline";
}

}

function submitform()
{
    document.forms["myform"].submit();
}
