function openWindow(url,name,height,width,left,top)
{
//defaults

if(!width) {width = 1024};
if(!height){height = 768};
if(!left) {left = 60};
if(!top){top = 60};

newWin = window.open(url,name,'width=' + width + ',height='+ height + ',resizable=1,status=0,scrollbars=1,left=' + left +',top=' + top);
if (newWin){newWin.focus();} else {window.Name.focus();}
}
