/* from join2Grow 's global.js */

function openpopup(url, height, width, name) {
	newwindow=window.open(url,name,'height=' + height + ',width=' + width);
	if (window.focus) {newwindow.focus()}
	return false;
}

function openpopupscroll(url, height, width, name) {
	newwindow=window.open(url,name,'height=' + height + ',width=' + width + ',scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}
