function openPopup(category, article) {
	myPopup = window.open("/popup.php/"+category+"/"+article+"/", "myPopupWindow", "menubar=no,scrollbars=yes,status=yes,width=480,height=320");
}

//Idea by:  Nic Wolfe
//This script and many more are available free online a
//The JavaScript Source!! http://javascript.internet.com
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=725,height=400');");
}