<!--

function winPop(thePage) {

var	location = thePage + ".html";
var windowParameters = "locationbar=0, menubar=0, personalbar=0, scrollbars=1, statusbar=0, toolbar=0, width=460, height=350, top=125, left=250";
var	popWindow = window.open(location,thePage,windowParameters); 

	if (popWindow == null) {
		popWindow.opener = self;
	}

popWindow.focus();

}

// -->