function launchNewWindow(theURL,windowName,features)
{
	var objNewWindow;
	top.objNewWindow = window.open(theURL,windowName,features);
	top.objNewWindow.focus();
}
