// JavaScript Document
function popitup(url, height, width, scrolling) {
	newwindow=window.open(url,'name','height='
	+height+',width='+width+',location=no,menubar=no,resizable=no,scrollbars='+ scrolling +',status=no,toolbar=no');
	if (window.focus) {newwindow.focus()}
	return false;
}// JavaScript Document
