<!--

// basic script to create popup window
function openWindow(url,width,height,name) {
	var myWin = null

	// if the window has not already been created, then create it now
	if(!myWin || myWin.closed) {
		myWin = window.open(url, name, "width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,scrollbars=auto,resizable=yes");
	// otherwise, just turn focus to the popup window
	} else {
		myWin.focus(wname);
	}
}

// -->

