// JavaScript Document
function popitup(url) {
	newwindow=window.open(url,'name','height=500,width=660,top=12,left=2,resizable=yes,scrollbars=no,toolbar=no,menubar=no,status=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

