<!--
function OpenWindow(file,width,height) {
		var left = (screen.availWidth - width)/2;
		var top = (screen.availHeight - height)/2;
		window.open(file, "", "top="+top+",left="+left+",width="+width+",height="+height+",scrollbars=yes");
}
// -->