/* Openwin.js
 *
 * (c) Gambit Research
 *
 * <a href="link" taget="target" onclick="return openwin(this, 'parameters');" />
 */

function openwin(elem, params) {
	window.open(elem.getAttribute("href"), elem.getAttribute("target") || "_blank", params || "");
	return false;
}

