function pop(url, height, width) {
	var dim = 'height=' + height + ',width=' + width;
	newwindow=window.open(url,'name',dim);
	if (window.focus) {newwindow.focus()}
	return false;
}
