/*
popWin()
*****************************
Calls the popup window popup.htm.  At this point, it is just a placeholder.
Parameters: 
	(none)
*/
function popWin(target,title,width,height) {
	var w = window.open(target, "testwin", "width=" + width + ",height=" + height + ",status=yes,resizable=yes");
}
