function sprawdz(){
if(document.formularz.tekst.value=="")
{
alert("Pole tesktu do wyceny nie może być puste");
document.formularz.test.value=0;
return false;
}
if(document.formularz.start.value==document.formularz.koniec.value){
alert("Język żródłowy musi być różny od języka docelowego");
document.formularz.test.value=0;
return false;
}
document.formularz.test.value=1;
return true;
}
<!--
function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=yes,menubar=no' );

}
//-->
<!--
function LmOver(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#FFFFFF";
elem.style.cursor = 'hand'}

function LmOut(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#CC3300";}

function LmDown(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#FFFFFF";}

function LmUp(path)
{location.href = path;}
//-->
