<!--

function newCenterWin(w_url,w_name,w_width,w_height,o_features) {
	var w_top = (screen.height - w_height)/2;
	var w_left = (screen.width - w_width)/2;
	newWin=window.open(w_url ,w_name ,'width=' + w_width + ',height=' + w_height + ',top=' + w_top + ',left=' + w_left + ',features=' + o_features);
	newWin.focus();
}

//-->
