function popUp(title, image, width, height)
{
	var popwin = window.open("/popups/popup.php?title=" + title + "&image=" + image, "", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" + (width + 30) + ",height=" + (height + 100));
	popwin.focus();
}