// JavaScript Document
// September 2007 (jbrowdy)
// --------------------------------------------------------

// Popup window function. Popup windows will remain up front even if another popup is opened.


function popitup(url) {
	newwindow=window.open(url,'name','height=480,width=680,scrollbars=yes,resizeable=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}




