//window open methodfunction openWin2(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();}function openWin(theURL,winName,features) { //v2.0	var wOption = features + ",scrollbars=yes,resizable=yes";	//alert(wOption);  window.open(theURL,winName,wOption);}