// JavaScript Document

function showPopup(host, type, id){
	switch (type){
		case "1":
			popup=window.open(host+"popup.tekst.php?id="+id, "tekstpopup", "scrollbars, width=500, height=300, margin=0");
		break
		case "2":
			popup=window.open(host+"popup.fotoalbum.php?id="+id, "tekstpopup", "scrollbars, width=500, height=300, margin=0");
		break
		case "4":
			popup=window.open(host+"popup.infopagina.php?id="+id, "tekstpopup", "scrollbars, width=500, height=300, margin=0");
		break
	}
	popup.focus();
}