//http://www.quirksmode.org/js/popup.html
<!--
function popitup(url) {
	newwindow=window.open(url,'name','height=250,width=380');
	if (window.focus) {newwindow.focus()}
	return false;
}
// -->