
function highlight(i) {
	a = "menu" + i + "r";
	b = eval ("document.images['a" + i + "']")
	b.src = eval (a + ".src");
}

function unHighlight(i) {
	a = "menu" + i + "e";
	b = eval ("document.images['a" + i + "']")
	b.src = eval (a + ".src");
}

function gotoURL(url) {
	location.href = url
}

function showModalAlert(qid,cat,subj,date){

	 a = window.showModalDialog("news/modal.asp?cat=" + cat + "&subj=" + subj + "&date=" + date,"","dialogHeight:290px;dialogWidth:360px")

	 if (a == "delete") {
	 	a = window.showModalDialog("news/modal.asp?qid=" + qid + "&del=1","","dialogHeight:150px;dialogWidth:500px")
	 	window.location.reload();
	 }
}

function showModalAlertPR(qid,cat,subj,date){

	 a = window.showModalDialog("modal.asp?cat=" + cat + "&subj=" + subj + "&date=" + date,"","dialogHeight:290px;dialogWidth:360px")

	 if (a == "delete") {
	 	a = window.showModalDialog("modal.asp?qid=" + qid + "&del=1","","dialogHeight:150px;dialogWidth:500px")
	 	window.close();
	 }
}