function OpenWindow(destination, windowname, windowparameters) {
	if windowname=="" { 
		var n = new Date() ;
		windowname = 'newWin' + n.getTime() ;
	}
	window.open( destination,  windowname , windowparameters) ;
}
/*
You would use the window.open(url, name, parameters) javascript method. This just opens a basic window, but there are a bunch of other attributes you can set to control how this window looks. Below, you'll find a list of the most commonly used attributes:

    * url - The url string to be diplayed in the window. This setting is optional for when you want to write content to the window depending on user input. More on this later.
    * name - The unique name string given to a window. This value can be used for target attributes for links. If this value is not unique, any other windows created with the same name will replace this window.
    * parameters - Comma seperated string of parameters. There should be no spaces in this list. Any parameters left out will be displayed by default. Basic format is parameter1=value1,parameter2=value2,etc.... If the parameter is specified, but no value is assigned, it will default to yes (This rules does not apply to parameters that need values such as width, height, etc).
          o height - Height of the content of the window in pixels. This does not include menubar/statusbar.
          o width - Width of the content of the window in pixels.
          o menubar - Specifies if the menubar (File, Edit, View, etc) is displayed. yes or no.
          o scrollbars - Specifies if the scrollbars are displayed. yes or no.
          o toolbar - Specifies if the button images (back, forward, reload, stop, etc) bar is displayed. yes or no.
          o status - Specifies if the status bar is displayed. yes or no.
          o left (use screenX for Netscape 4) - The horizontal window position in pixels from the left of your monitor screen.
          o top (use screenY for Netscape 4) - The vertical window position in pixels from the top of your monitor screen.
          o resizable - Specifies if the window is resizable. yes or no. Watch for spelling, many people mistankingly use "resizeable" instead, which will not work. 

Now that you know most of the parameters (there are a few others, but they only work in certain browsers), you can build your own windows.
*/


