
function popitup(url, width, height) {
	if(width == undefined ){ width = 455}
	if(height == undefined){ height = 380}
	newwindow=window.open(url,'name','height='+height+',width='+width);
	if (window.focus) {newwindow.focus()}
	return false;
}