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