function newWindowRTM(str,w,h) 
{
	if ((w != 0) || (h != 0)) {
		var x = (screen.width) ? (screen.width-w)/2 : 0; 
		var y = (screen.height) ? (screen.height-h)/2 : 0; 
		newwindow=window.open(str,"","width="+w+",height="+h+",left=" + x + ",top=" + y+",resizable=no,menubar=no,scrollbars=no");
	}
	else {
		newwindow=window.open(str,"","resizable=no,menubar=no,scrollbars=no");
	}
	newwindow.focus();
}
