/*
Include file for InfoFaience.com
*/

var picture_window;

function open_picture_win (obj,descr) {
	var title = descr;	var htmlString;	var settings;	var width='400';
	var height='300';

	htmlString = '<html><head><title>' + title + '<\/title>';	htmlString += "<style> {border: 0; margin: 0; padding: 0;} body {background-color: black; overflow: hidden; }<\/style><\/head><body style=\"cursor: pointer\" leftmargin=\"0\" topmargin=\"0\" bgcolor=\"#555555\">";	htmlString += "<img width='400' height='300' title=\'Klik om te sluiten\' onclick=\"window.close()\" src=\"";	htmlString += obj;	htmlString += "\"><\/body><\/html>";	settings = "toolbar=no, scrollbars=no,width=400,height=300";


	if (picture_window && !picture_window.closed) {		picture_window.close();	}	picture_window = window.open("", "", settings);
	picture_window.document.write(htmlString);	picture_window.focus();	picture_window.document.close ();		return false;}
