//window open methodfunction openWin(wUrl , wName , Width , Height , Resize , Status , Scroll , Tool){	wOption = "toolbar=" + Tool + ",location=no,directories=no,status=" + Status +",menubar=no,scrollbars=" + Scroll + ",resizable=" + Resize +",width=" + Width + ",height=" + Height ;	w = window.open(wUrl,wName,wOption);	w.focus();}