/* popups */
function popupWindow(url){
  var w=window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=600,height=450,screenX=100,screenY=30,top=30,left=30,menu=no');  
}
function popupWindowscorll(url){
  var w=window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=1024,height=768,screenX=100,screenY=30,top=30,left=30,menu=no');  
}
function popupWindowmax(url){
  var w=window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=1024,height=768,screenX=0,screenY=0,top=0,left=0,menu=no');  
}

/* forms */
function confirmAction() {
        return confirm("Czy chcesz wydać 1 kredyt na dodanie swojej firmy do katalogu? \nNaciśnik OK. aby kontynuować lub Anuluj by powrócić.")
}
function confirmActionq() {
        return confirm("Czy chcesz wydać 1 kredyt na dodanie swojej strony do katalogu? \nNaciśnik OK. aby kontynuować lub Anuluj by powrócić.")
}
function goTo (l) {
	location.href=l;
}

function hideElement(id) {
	var o = document.getElementById(id);
	if(o.style) {
		o.style.display = 'none';
	}
}
function showElement(id) {
	var o = document.getElementById(id);
	if(o.style) {
		o.style.display = '';
	}
}
