<!--
function popitup(url) {
	newwindow=window.open(url,'name','height=450,width=450,top=30,left=30','menubar=no,status=no,location=no');
	if (window.focus) {newwindow.focus()}
	return false;
}

function openLinkClosePopup(url) {
    x = window.open(url,'newWinName','resizable=1,scrollbars=1')
    self.close()
  }

// -->
