function NewWindow(Target, Width, Height)
{if (Width == null)
{Width = 600;}
if (Height == null)
{Height = 400;}
window.open(Target,"","width=" + Width + ",height=" + Height + ",toolbar=0,menubar=0,location=0,scrollbars=0,resizable=1");}