/** window pop-up */
function pop_open( url ){
	window.open( url );
	return false;
}

function image_pop( img, width, height ){
	var h = height + 40;
	var w = width + 20; 
	
	window.open	( 'image_pop.php?img=ellwood-bluffs', 'image-pop', 'toolbar=0,status=0,height=' + h + ',width='+w );
	return false;
}
