var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

//******************************************************************************************
function checkLoginForm()
{
	var f = document.loginForm;
	if (f.login.value.length==0 || f.pwd.value.length==0) {
		alert("Nie podano potrzebnych informacji do zalogowania się.");
		return false;
	}
	else return true;
}
//******************************************************************************************
function wnd(fname,styles)
{
	window.open(fname,"formularz","toolbar=no,menubar=no,fullscreen=no,resizable=no,scrollbars=yes,"+styles);
}
//******************************************************************************************
function wydruk(uwagi,email)
{
	var s = "/ofertah.php";
	if (email==1)
		s += "?email=1";
	var x = (screen.availWidth-760)/2;
	var y = (screen.availHeight-540)/2;
	window.open(s,"oferta_handlowa","left="+x+",top="+y+",statusbar=no,width=760,height=540,toolbar=no,scrollbars=yes");
}
//******************************************************************************************
function zam_zb()
{
	var x = (screen.availWidth-760)/2;
	var y = (screen.availHeight-500)/2;
	window.open("/zam_zbiorcze.php","historia","left="+x+",top="+y+",toolbar=no,statusbar=no,width=760,height=500,scrollbars=yes,resizable=yes");
	
	return false;
}
//******************************************************************************************
function testAdresaciForm(f)
{
	if (f.adresatID.options[f.adresatID.selectedIndex].value>0) {
		f.submit();
		return true;
	}

	if (f.imie.value=="" ||
		f.nazwisko.value=="" ||
		f.miasto.value=="")
	{
		alert("Nie wypełniono wymaganych pól w formularzu\nlub występuje w nich błąd.");
		return false;
	}
	else {
		f.submit();
		return true;
	}
}
/******************************************************************************************
function checkLoginForm()
{
	var f = document.loginForm;
	if (f.login.value.length==0) {
		alert("Nie podano potrzebnych informacji do zalogowania się.");
		return false;
	}
	else return true;
}*/
//******************************************************************************************
function zamow()
{
	var x = (screen.availWidth-760)/2;
	var y = (screen.availHeight-540)/2;
	window.open("/zamowienie.php","zamowienie","left="+x+",top="+y+",toolbar=no,statusbar=yes,width=760,height=540,scrollbars=yes");
}

function get_object(id){
	return document.all ? document.all[id] : document.getElementById(id);
}

function hide_obj(obj,checkobj,disobj){
	//if (document.getElementById) { // IE NS6
		hobj = get_object(obj);
		chobj = get_object(checkobj); // test object
		dobj = get_object(disobj); // disable object
		hobj.style.display='none';
//		if(chobj.style.display=='none') dobj.style.display='none';
	//}
}

