function displayPage(url, name, width, height, scrollvalue) {
	w = window.open(url, name, 'width='+width+', height='+height+', scrollbars='+scrollvalue+', menubar=no, resizable=0');
	w.moveTo(screen.width/2-width/2, screen.height/2-height/2);
}

function showImg( img_src, img_w, img_h, img_name ) {
	img_w_n = img_w+20;
	img_h_n = img_h+20;
	img_w_o = img_w;
   var popup = window.open('','','width=' + img_w_n + ',height=' + img_h_n + ',resizable=0,scrollbars=no,menubar=no');
   popup.document.open();
   popup.document.write('<html><head><title>'+img_name+'<\/title><\/head>');
   popup.document.write('<body style="margin: 0;padding: 0; position: relative;">');
   popup.document.write('<a href="javascript:window.close();" style="margin: 0 ;border: none; padding: 0;"><img style="margin: 0;border: 10px solid #eeeeee;padding: 0;" src=' + img_src + ' /></a>');
   popup.document.write('<br /><div style="position: absolute; top:10; left: 10; background-color: #ffffff; filter:alpha(opacity=75); opacity:.75; width: '+img_w_o+'; padding: 5px 0; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"><p style="margin: 0 5px; padding: 0;">'+img_name+'<\/p><\/div>');
   popup.document.write('<\/body><\/html>');
//   popup.document.focus();
   popup.document.close();
}

function makeOk() {
	if (img = document.getElementById('middle_site').getElementsByTagName('img')) {
		if (img.length>0) {
			//alert(img[1].parentNode.tagName);
			//alert('Ilosc obrazkow: '+$img.length);
			for (i=0; i<img.length; i++) {
				if ( (img[i].parentNode.parentNode.tagName.toLowerCase() == 'p') && (img[i].parentNode.parentNode.parentNode.tagName.toLowerCase() != 'td') ) {
					if (i%2 == 0) {
						img[i].className = img[i].className.replace(/^.*$/,"img_prawy");
					} else {
						img[i].className = img[i].className.replace(/^.*$/,"img_lewy");
					}
					img[i].style.position = 'relative';
	
				}
			}
		}
	}
}

function change_lang(t) {
		window.location = t[t.selectedIndex].value;
		//alert(t[t.selectedIndex].value);	
}


function submitform( dl, sz, street, zip, city ) {
	//document.form_map.submit();
  var $adres = 'http://map24.ms.pl/index.php?';
  var $url = $adres;
  $url = $url + 'dl=' + dl + '&sz=' + sz + '&street=' + street + '&zip=' + zip + '&city=' + city;
  window.open($url, 'Mapa', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width=700, height=620 ');
}

function hide(){
	if (document.getElementById){
		id = 'popup';
		var popup = document.getElementById(id);
		popup.style.display = 'none';
	}
}

function showgooglemap( nodeID ) {
	var $id = nodeID;
	var $url = 'http://www.ms.pl/index.php/layout/set/googlemap/(id)/' + $id;
	window.open($url, 'Mapa', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width=700, height=620 ');
}


