function popper(h1, w1, page1) {
	window.open( page1, "myWindow", "status = 1, height = "+h1+", width = "+w1+", resizable = 1" )
}

function showonlyone(thechosenone) {
      var classifieds = document.getElementsByTagName("div");
            for(var x=0; x<classifieds.length; x++) {
                  name = classifieds[x].getAttribute("name");
                  if (name == 'classifieds') {
                        if (classifieds[x].id == thechosenone) {
                         classifieds[x].className = 'unhidden'; 
                  }
                  else {
                       classifieds[x].className = 'hidden'; 
                  }
            }
      }
}


function showall() {
/* 	document.getElementById('classifieds').className = 'unhidden'; */
	var classifieds = document.getElementsByTagName("div");
		for(var x=0; x<classifieds.length; x++) {
				name = classifieds[x].getAttribute("name");
				if (classifieds[x].id == thechosenone) {
					classifieds[x].className = 'unhidden'; 
    	        }
      	}
	
}
