function popitup(url, height, width) {
	newwindow=window.open(url,'name','height=' + height + ', width=' + width + ', scrollbars, resizable=true');
	if (window.focus) {
		newwindow.focus()
	}
	return false;
}


