function moreInfo(band,callLetters) {
	
	var winObj = new Object();
	winObj.dest = "moreStationInfo.cfm?band=" + band + "&callLetters=" + callLetters;
	winObj.width = 500;
	winObj.height = 500;
	winObj.scrollbars = 1;
	
	newWin(winObj);
	
}

/*
	open a new window with complete control over all attributes
	dest = REQUIRED the url to open;
	winName = the name to give the window for later identification;
	width = the width of the eindow;
	height = height of window;
	resizable = bit - can the window be resized?;
	scrollbars = bit - should the indow have scrollbars?;
	toolbar = bit - does the window display the toolbar?;
	location = bit - does the window display the location bar?;
	directories = bit - should the iwndow show extra buttons?;
	status = bit - should the status bar display?;
	menubar - bit - should the menu bar display?;
	copyhistory = bit - should the new window adopt the browser history of the parent window?;
	left = horizontal location of the window;
	top = vertical location of the window;
	
	each of the above attributes is fed as an object to the function
*/
function newWin(winObj) {
	
	var attrArray = new Array();
	var attrList = "";
	
	// create the attributes string
	for (var attr in winObj) {
		
		// if the attribute is not the destination or window name or location x or y
		if (attr != "dest" && attr != "winName" && attr != "left" && attr != "top") {
			
			// build an array of the attributes
			attrArray[attrArray.length] = attr + "=" + winObj[attr];
			
		} else {
			
			// if the attribute is a location value
			if (attr == "left") {
				// set for both browser types
				attrArray[attrArray.length] = "left=" + winObj[attr];
				attrArray[attrArray.length] = "screenX=" + winObj[attr];
			}
			
			if (attr == "left") {
				attrArray[attrArray.length] = "top=" + winObj[attr];
				attrArray[attrArray.length] = "screenY=" + winObj[attr];
			}
			
		}
		
	}
	
	// convert the attribute array to a list
	attrList = attrArray.toString();
	
	// build the full function
	winStr = "\'" + winObj.dest + "\',\'" + winObj.winName + "\',\'" + attrList + "\'";
	
	window.open(winObj.dest, winObj.winName, attrList);
}
