function colorIt_menu(el,action){
    if (!document.getElementById) return;
    if (action){
		el.style.background = "#fd600f";
		el.style.color = "#fff";
    }
    else   {
	   el.style.background = "#ffffff";
		el.style.color = "#fd600f";
    }
} 
function okno(plik,w_o,h_o,tytul) { 
	tytul = tytul != '' ? tytul : "Termatrans";
	left1 = (screen.width - w_o)/2;
	top1 = (screen.height - h_o)/2;
	scrollbars1 = 0;
	windowprops = "toolbar=no,location=no,status=no,menubar=no,scrollbars="+scrollbars1+",resizable=no,left="+left1+",top="+top1+",width="+w_o+",height="+h_o+",scrolling=1";
	preview = window.open('', 'preview', windowprops);
	preview.document.writeln('<html><title>Swep - powiększenie</title><body margin="0" leftmargin="0" topmargin="0"><img src=' + plik + ' width=' + w_o + ' height=' + h_o + '></body></html>');
	preview.document.close();
	preview.focus();
}

function wyswietl(co) {
	document.getElementById('info').innerHTML = document.getElementById(co).innerHTML;

}

function sprawdz_formularz(){
	if (!val_str('nazwa_projektu','nazwą projektu',300,1)) return false;
	if (!val_str('zamawiajacy','osobą zmawiającą',150,1)) return false;	
	if (!val_email('email','adresem e-mail',150,1)) return false;
	if (!val_str('tel','telefonem',150,6)) return false;
	return true;
}
