function blokowanietekstu(field, countfield, maxlimit) { 
if (field.value.length > maxlimit) 
field.value = field.value.substring(0, maxlimit); 
else  
countfield.value = maxlimit - field.value.length; 
}


function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,top=100').focus();
}


function selecturl(s) {
	var gourl = s.options[s.selectedIndex].value;  window.top.location.href = gourl;
}



noweOkienko = null;
function galeria(src, w, h){
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=480;
}
if(noweOkienko==null || noweOkienko.closed){
 ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"
 noweOkienko = window.open("",'obrazek',ustawienia);
}
noweOkienko.document.open();
noweOkienko.document.clear();
noweOkienko.document.write(
"<html><head>\n"
+"<META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=ISO-8859-2>\n"
+"<title>- powiększenie -</title>\n"
+"<SCRIPT src=\"imgrep.js\" LANGUAGE=JavaScript TYPE=text/javascript></SCRIPT>\n"
+"<style><!--\n"
+"body{background-repeat:no-repeat}\n"
+"--></style>\n"
+"</head>\n"
+"<body bottommargin=0 leftmargin=0 marginwidth=0 marginheight=0 rightmargin=0 topmargin=0>\n"
+"<img name=obrazek src=" + src + " onload=\"javascript:window.resizeTo(obrazek.width + 10,obrazek.height + 30);\">\n"
+"</body>\n"
+"</html>"
);
noweOkienko.document.close();
noweOkienko.focus();
}


function checkRej() {

	if(!document.forms["rejestracja"].elements["regulamin"].checked) {
	    alert('Musisz zaakceptować regulamin!');
	    return false;
	}
	return true;
}

