// JavaScript Document
function OpenWindow(url, title, width, height, feature) {
	var iTop = (screen.height-height)/2;
	var iLeft = (screen.width-width)/2;

	var sFeature = 'scrollbars=yes,top=' + iTop.toString() + ',left=' + iLeft.toString() + ',width=' + width.toString() + ',height=' + height.toString();
	if (feature) sFeature += "," + feature;
	window.open(url, title, sFeature);
}