// open bronscherm
// wordt aangeroepen vanuit Bronnenlijst
function openSourceWithId(bronid, label, zoektekst) {
	bronScherm=window.open("ge_bron_select.php?sourceid="+bronid+"&text="+zoektekst+label, "bronScherm", "height=700,width=700,screenX=50,screenY=50,scrollbars=yes,resizable=yes");
	bronScherm.focus();
}

// open bronscherm
// wordt aangeroepen vanuit Notities en Nieuws
function openSourceWithTitle(bronnr) {
	bronScherm=window.open("ge_bron_select.php?sourcenr="+bronnr, "bronScherm", "height=700,width=700,screenX=50,screenY=50,scrollbars=yes,resizable=yes");
	bronScherm.focus();
}

// open fotoscherm
// wordt aangeroepen vanuit Bronselectiescherm
function openPhotoWithId(fotoid, label) {
	fotoScherm=window.open("ge_foto_select.php?fotoid="+fotoid+label, "fotoScherm", "height=700,width=700,screenX=50,screenY=50,scrollbars=yes,resizable=yes");
	fotoScherm.focus();
}

// open fotoscherm
// wordt aangeroepen vanuit Notities, Nieuws en Fotolijst
function openPhotoWithCode(fotocode, label) {
	fotoScherm=window.open("ge_foto_select.php?fotocode="+fotocode+label, "fotoScherm", "height=700,width=700,screenX=50,screenY=50,scrollbars=yes,resizable=yes");
	fotoScherm.focus();
}

// open pandscherm
// wordt aangeroepen vanuit Notities, Nieuws en Pandenlijst
function openResidenceWithCode(pandcode, label, zoektekst) {
	pandScherm=window.open("ge_pand_select.php?pandcode="+pandcode+"&text="+zoektekst+label, "pandScherm", "height=700,width=700,screenX=50,screenY=50,scrollbars=yes,resizable=yes");
	pandScherm.focus();
}

// open citaatscherm
// wordt aangeroepen vanuit Gezinsblad
function openCitation(bronid, indid, label) {
	citaatScherm=window.open("ge_citaat_select.php?sourceid="+bronid+"&indid="+indid+label, "citaatScherm", "height=700,width=700,screenX=50,screenY=50,scrollbars=yes,resizable=yes");
	citaatScherm.focus();
}

// open scherm met externe link
function openSite(adres) {
	siteScherm=window.open("ge_link_frameset.php?adres=" + escape(adres), "siteScherm");
	siteScherm.focus();
}
