//Javascript file for opening a link on a new window

function newWindow(url, height, width)
{
   window.open(url,"","menubar=no,toolbar=no,resizable,location=no,scrollbars,width=" + width + ",height=" + height);
}

function newLocWindow(url, height, width)
{
   window.open(url,"","menubar=no,toolbar=yes,resizable,location=no,scrollbars,width=" + width + ",height=" + height);
}

