function OpenRadWindow(url, title, width, height)
{	
	var radWindow = window.top.radopen(url, null);

	radWindow.SetSize(width, height);
	radWindow.SetTitle(title);
	radWindow.Center();		
}

function OpenRadWindow_notCenter(url, title, width, height)
{
    var radWindow = window.top.radopen(url, null);

	radWindow.SetSize(width, height);
	radWindow.SetTitle(title);		
}
