// pull-down menu navigation.  Used with category menu.
// stole this from Mike (Essl.com)

function gotoCategory(index) {
	document.getElementById("categories").submit()
 }
 
 
 
//POP UP WINDOWS

//pop-up 
//send attributes like size etc.
function newWindow(pageSrc, attributes) {
	newWin = window.open(pageSrc, 'loading', attributes)
}

//generic pop-up
function genWindow(pageSrc) {
	newWin = window.open(pageSrc, 'loading')
}
 

