/* Scripts for the API Samples for the Client Graphs */


// This function is called by the links on the xml code pages.
// It gives focus to the target browser. Otherwise, that
// browser remains in the background if already open, and it
// making it appear that nothing happens when you choose a link.

function giveFocus(){
  w = window.open("", "ncwnForm", "width=700,height=600,screenX=2,screenY=2,resizable,scrollbars,menubar,status");
  w.focus();
}

function iLogin(){
  w = window.open("", "login", "width=600,height=500,screenX=5,screenY=5,resizable,scrollbars,menubar,status");
  w.focus();
}



