<!-- Hide script from old browsers

// winName is the name of the new window created for future reference (using the same name will replace the previous URL with the new one)
// newLocation is the URL of the destination page
// Xpos is the x position of the new window on the screen (set to 0 for default)
// Ypos is the y position of the new window on the screen (set to 0 for default)
// Width is the width of the new window (set to 0 for default)
// Height is the height of the new window (set to 0 for default)

function openNewWindow(winName, newLocation, Xpos, Ypos, Width, Height)
{
	newPosition = "toolbar=no,menubar=no,";
	if(Width != 0) newPosition = "width=" + Width + ",";
	if(Height != 0) newPosition += "height=" + Height + ",";
	if(document.all)
	{
		if(Xpos != 0) newPosition += "left=" + Xpos + ",";
		if(Ypos != 0) newPosition += "top=" + Ypos + ",";
	}
	else
	{
		if(Xpos != 0) newPosition += "screenX=" + Xpos + ",";
		if(Ypos != 0) newPosition += "screenY=" + Ypos + ",";
	}
	winName = window.open(newLocation, winName, "resizable,scrollbars," + newPosition);
	winName.focus();
}

// End hiding script from old browsers -->