function openWin(myURL,atrib) {
  window.open(myURL.href, "win"+(new Date()).getSeconds(),atrib);
  return false;
}
//height=
//			The height, in pixels, of the window's document area.
//,location=
//			Can be yes or no. Turns the location bar on and off. No by default. 
//,menubar=
//			Can be yes or no. Turns the menu bar on and off. No by default. 
//,resizable=
//			Can be yes or no. Allows the user to resize the window. No by default.
//,scrollbars=
//			Can be yes or no. Turns scrollsbars on and off. No by default.
//,status=
//			Can be yes or no. Turns the status bar on and off. No by default. 
//,toolbar=
//			Can be yes or no. Turns the toolbar on and off. No by default.
//width=