// help from http://www.yourhtmlsource.com/javascript/popupwindows.html 4-23-09

function openWindow(url)
{
	newwindow=window.open(url, 'name', 'width=440, height=460, resizeable=yes, menubar=no, location=no, toolbar=no');
	if (window.focus) {newwindow.focus()}
}