function OpenNewWindow(URL,windowname,parms) {
    msgWindow = window.open(URL,windowname,parms);
    msgWindow.location.href = URL;
    if (msgWindow.opener == null) msgWindow.opener = self;
	setTimeout('msgWindow.focus()',500);
}

function WindowClose() {
  setTimeout('window.close()',100);
}

function OpenNewPageInLauncher(url) {
	//Opens specified URL in launching browser
	opener.location.href = url;
}
