/* rob okno */
function mkwindow(url,w, h) {
	var options = "width="+w+",height="+h+",";
   options += "resizable=yes,scrollbars=yes,status=no,";
   options += "menubar=no,toolbar=no,location=no,directories=no,fullscreen=no";
   newWin = window.open(url, 'oeWin', options);
	newWin.focus()
	return;
}

/* checking all */
function CheckAll(check) {
	for (var i = 0; i < document.plan.length; i++) {
		if(document.plan.elements[i].type == 'checkbox') {
			if(check) document.plan.elements[i].checked = 1;
			else document.plan.elements[i].checked = 0;
		}
	}
}

function myconfirm(url,info) {
	
	if(confirm(info+"?")) window.location.assign(url);
	else return false;
		
}

function MojaTapeta(s,l) {
	w=window.open(
		l?'http://www.mojatapeta.com/'+s+'/'+escape(l)
		:'http://www.mojatapeta.com/?s='+s,
		'MT','width=510,height=500,scrollbars=yes');
	return false;
}

function resize(plus, nazwa) {
	
	//alert(fr);
	var f = document.getElementsByName(nazwa);

	
	if(plus) f.item(0).rows += 5;
	else f.item(0).rows -= 5;
	                     
}

function checkComment(fr, nazwa, info) {
	var f = document.getElementsByName(nazwa);
	
	if(f.item(0).value == '') {
		alert(info);
		return false;}
	else 
		return true;
}
