function _popitup(url, width, height) {
	newwindow=window.open(url,'name','height=' + height + ',width=' + width
        + ',toolbar=no,menubar=no,location=no,resizable=no');
	if (window.focus) {newwindow.focus()}
	return false;
}


