function view(DogId) {
	var url = "detail.php?dog_id=" + DogId;
	var width = screen.width*.9;
	var height = screen.height*.9;
	var opts = "toolbar=no,status=no,location=no,menubar=no,resizable=yes,height="+height+",width="+width+",left=0,top=0,scrollbars=yes";
	closer = window.open(url, "View", opts);
	closer.focus();
}
	
function showPic(PicId) {
	var url = "show_pic.php?pic_id=" + PicId;
	var width = screen.width*.9;
	var height = screen.height*.9;
	var opts = "toolbar=no,status=no,location=no,menubar=no,resizable=yes,height="+height+",width="+width+",left=0,top=0,scrollbars=yes";
	closer = window.open(url, "View", opts);
	closer.focus();
}
