<!--
var NewWindow;

function openNewWindow(URL,width,height)
{
if((NewWindow == null ) || NewWindow.closed ) {
Features = new String("left="+(window.screen.availWidth/2 - width/2)+"top="+(window.screen.availHeight/2 - height/2) + ",height="+height+",width="+width+", status=1,location=0,directories=0,toolbar=no,menubar=0,scrollbars=yes,resizable=no");
NewWindow = window.open(URL,'ManageFolders',Features);
}
else {
NewWindow.location = URL;
NewWindow.focus();
}
}
// -->
