function imgpopup(picture, width, height) {
	var popurl="popup.php?img=" + picture
	var hori = (screen.width - width) / 2;
	var vert = (screen.height - height) / 2;
	winpops=window.open(popurl,"","width=" + width + ",height=" + height + ",left=" + hori + ",top=" + vert + ",scrollbars=no,")
}

function videopopup(link, width, height) {
	var popurl="popup.php?video=" + link
	var hori = (screen.width - width) / 2;
	var vert = (screen.height - height) / 2;
	winpops=window.open(popurl,"","width=" + width + ",height=" + height + ",left=" + hori + ",top=" + vert + ",scrollbars=no,")
}
