function showFullImage(whichpic){
		
	var imgWidth = 300;
	var imgHeight = screen.height - 100;
	var top = 20;
	var left = screen.width - 350;

	//var imageWindow = window.open("","Detail","scrollbars=yes, resizable=yes, width=" + imgWidth + ", height=" + imgHeight + ", top=" + top + ", left=" + left);
	var imageWindow = window.open("ImageViewer.html?"+whichpic,"Detail","scrollbars=yes, resizable=yes, width=200, height=200");
	imageWindow.focus();

}


