function showDetailed(id) {

	var h = 550;

	var w = 640;

	var l = (screen.width - w) / 2;

	var t = (screen.height - h) / 2;

	window.open('../popup-listing.php?id='+id,'poplisting' + id,'width='+w+', height='+h+', scrollbars=1, resizable=1, status=0, top='+t+', left='+l);

}



function showPic(listing,id,number,extension) {

	document.getElementById('picture').src = 'img_listings/' + listing + '_' + id + extension;

	document.getElementById('picnum').innerHTML = number;

}