// JavaScript Document

<!--
var newwindow;
function popitup(url) {

	var x = document.forms['popuparguments'].elements;
	var properties = '';
	for (var i=0;i<x.length;i++) {
		if (x[i].checked)
			properties += x[i].name + '=' + x[i].value +',';
	}
	properties = properties.substring(0,properties.length-1);
	newwindow=window.open(url,'name',properties);
	if (window.focus) {newwindow.focus()}
	return false;
}


// -->

