<!--
function openwin( urlpage , width , height , center) {
	xpos=0; ypos=0;
	if ((parseInt(navigator.appVersion) >=4) && (center)) {

		xpos=(screen.width-width)/2;
		ypos=(screen.height-height)/2;

	}
		arg="width="+width+","
		+ "height="+ height + ","
		+ "location=0, "
		+ "menubar=0, "
		+ "resizeable=0, "
		+ "scrollbars=0,"
		+ "status=0,"
		+ "toolbar=0,"
		+ "screenx=" + xpos + ","
		+ "screeny=" + ypos + ","
		+ "left=" + xpos + ","
		+ "top=" + ypos;

		window.open(urlpage,'newwin',arg);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//-->