function openImage(imagePath){
	jQuery.facebox("<img src='"+imagePath+"' alt='' />");
}

function openImage2(imagePath,width){
	
	if(width>700)
		width = 700;
		
	jQuery.facebox("<img src='"+imagePath+"' width ='"+width+"' alt='' />");
	
}
