
function displayWindow(url, nazwa, wys, szer, proc) {

	if (proc==1) {
			var width = window.screen.width * szer/100;
			var height = window.screen.height * wys/100;
	}
	else {
			var width =  szer;
			var height =  wys;

	}
	var okno = window.open(url, nazwa, 'width=' + width + 'px,height=' + height + 'px,resizable=1,scrollbars=yes,menubar=yes');
}

function jump76sg() {

	window.open("http://www.76sg.pl","");

}

function trim(str, chars) {
	return ltrim(rtrim(str, chars), chars);
}

function ltrim(str, chars) {
	chars = chars || "\\s";
	return str.replace(new RegExp("^[" + chars + "]+", "g"), "");
}

function rtrim(str, chars) {
	chars = chars || "\\s";
	return str.replace(new RegExp("[" + chars + "]+$", "g"), "");
}

function displayModalWindow(url, nazwa, wys, szer, proc) {

	// nazwa - nazwa okna, zast�puje poprzedni�zawarto��
	// wys, szer - w pikselach
	// proc = 1 - wys, szer w % aktualnego rozmiaru

	if (proc==1) {
		 var width = window.screen.width * szer/100;
		 var height = window.screen.height * wys/100;
	}
	else {
		 var width =  szer;
		 var height = wys;
	}
	 var okno = window.open(url, nazwa, 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no');

}

function szukaj() {
	var q = document.getElementById("szukaj");

	if (trim(q.value, '')!='' && q.value!='szukam ...') {
		var f = document.getElementById("searchForm");
		f.submit();
	}
	else {
		var qi = document.getElementById("searchinfo");
		qi.style.display="";
	}

}


