function viewImage(pic, type){
	var h = 360;
	var w = 500;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	window.open('popup.php?pic='+pic+'&type='+type,'zoom','width='+w+', height='+h+', scrollbars=0, resizable=0, status=0, top='+t+', left='+l);
}

function viewImageNews(pic, counter){
	var h = 360;
	var w = 500;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	window.open('popup-news.php?pic='+pic+'&counter='+counter,'zoom','width='+w+', height='+h+', scrollbars=0, resizable=0, status=0, top='+t+', left='+l);
}

function viewMap(pic){
	var h = 360;
	var w = 500;
	var l = (screen.width - w) / 2;
	var t = (screen.height - h) / 2;
	window.open('popup-map.php?pic='+pic,'zoom','width='+w+', height='+h+', scrollbars=0, resizable=0, status=0, top='+t+', left='+l);
}

function AddToBookmarks (){
	window.external.AddFavorite(self.location.href,document.title);
} 

function update(pid) {
	if (document.getElementById('form' + pid)) {
		document.getElementById('form' + pid).submit();
	}
}