function viewList(Form) {
	Form.action = "../../src/magazine/list.php";
	Form.submit();
}

function viewMagazine(Form) {
	Form.action = "../../src/magazine/view.php";
	Form.submit();
}

function popupMagazine(URL) {
	if (URL.trim() != "" && URL.trim() != "#") {
		if (popup != null && !popup.closed) popup.close();
		popup = window.open(URL, '_newsletter','resizable=no,scrollbars=yes,status=no,width=800,height=600');
	}
}

function popupArticle(no) {
	if (no.trim() != "") {
		if (popup != null && !popup.closed) popup.close();
		var URL = "../src/popup/article.php?no=" + no.trim();
		popup = window.open(URL, '_article','resizable=no,scrollbars=yes,status=no,width=800,height=600');
	}
}