function openWindow(link,name,features,position,width,height)
{
	var top = (position == "center" ? (screen.height - height)/2 : (position.match(/^top/) ? 0 : screen.height - height));
	var left = (position == "center" ? (screen.width - width)/2 : (position.match(/left$/) ? 0 : screen.width - width));

	features += (features ? "," : "") + "top=" + top + ",left=" + left + ",width=" + width + ",height=" + height;

	var myWindow = window.open(link,name,features);

	return myWindow;
}

function PopUp(title,image,width,height)
{
	myWindow = openWindow ('', 'woonhuis', '', 'center', width, height);
	myWindow.document.write("<html>\n<head>\n<title>" + title + "</title>\n</head>\n<body topmargin=\"0\" leftmargin=\"0\" bottommargin=\"0\" rightmargin=\"0\">\n<center>\n<a href=\"javascript: window.close();\">\n<img src=\"" + image + "\" border=\"0\">\n</a></center>\n</body>\n</html>\n");
}
