/* Benodigde functies voor redirect module */
	function redirect() {
		popup ('/admin/redirect/index.php', 'redirect')
	}
	var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
	var popupscherm=0;
	function popup (filename, fileid, width, height, scrollbars, resizable, menubar, toolbar, status, location) {
		if (popupscherm && ! popupscherm.closed)	popupscherm.close();
		if (!filename || filename=="")				filename="http://www.ozpc-oldenzaal.nl";
		if (!fileid || fileid=="")					fileid="redirect";
		if (!width || width=="")					width="600";
		if (!height || height=="")					height="500";
		popupscherm=0;
		var args = "height=" + height + ", width=" + width + ",scrollbars=no,resizable=no,menubar=no,toolbar=no,status=no,location=no";
		popupscherm = open(filename, fileid, args);
		if (!InternetExplorer) 						popupscherm.focus();
	}

//popupscript voor modules binnen admin
top.window.popupProductmodule = function () {
	popupModules('producten');
}
function popupModules(modulenaam) {
	var filename="/admin/modules/"+modulenaam+"/index.php";
	var fileid="Producten";
	var width="650";
	var height="580";
	var scrollbars="no";
	var resizable="no";
	var menubar="no";
	var toolbar="no";
	var status="no";
	var location="no";
	var popupscherm=0;
	var args = "height=" + height + ", width=" + width + ", scrollbars=" + scrollbars + ", resizable=" + resizable +  ", menubar=" + menubar + ", toolbar=" +toolbar + ", status=" + status + " ,location=" + location;
	popupscherm = top.window.open(filename, fileid, args);
}

function toon_afbeelding_leeg(afbeelding){
	afbeelding.onerror = '';
	afbeelding.src='/images/dot_clear.gif'
}

//script ten behoeve van gastenboek (wijzigen status
function wijzig_status(id, status, email) {
	document.formulier.id.value = id;
	document.formulier.status.value = status;
	document.formulier.email.value = email;
	document.formulier.submit();
}

//benodigde functie voor foto overzichts bouwsteen
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
var popupscherm=0;

function popup_afbeelding(filename, fileid, width, height, scrollbars, resizable, menubar, toolbar, status, location) {
	if (popupscherm && ! popupscherm.closed)	popupscherm.close();
	if (!filename || filename=="")				filename="http://www.ozpc-oldenzaal.nl";
	if (!fileid || fileid=="")					fileid="ozpc";
	if (!width || width=="")					width="50";
	if (!height || height=="")					height="50";
	if (!scrollbars || scrollbars=="")			scrollbars="no";
	if (!resizable || resizable=="")			resizable="no";
	if (!menubar || menubar=="")				menubar="no";
	if (!toolbar || toolbar=="")				toolbar="no";
	if (!status || status=="")					status="no";
	if (!location || location=="")				location="no";
	popupscherm=0;
	var args = "height=" + height + ", width=" + width + ", scrollbars=" + scrollbars + ", resizable=" + resizable +  ", menubar=" + menubar + ", toolbar=" +toolbar + ", status=" + status + " ,location=" + location;
	popupscherm = open(filename, fileid, args);
	if (!InternetExplorer) 						popupscherm.focus();
}