function showPicDetails(type,img){
	window.open('show_pic.php?type=' + type + '&img=' + img,'','width=600,height=400,top=50,left=50,scrollbars=yes,resizable=yes');
}//end func

function showPic1(type,img,width,height){

	width = width + 18;
	height = height + 70;

	if (width>800)	width=800;
	if (height>600) height=600;
	
	window.open('show_pic1.php?type=' + type + '&img=' + img,'','width='+ width +',height=' + height + ',top=50,left=50,scrollbars=yes,resizable=yes');
}//end func


function onOverTable(id){
	document.getElementById(id).bgColor = '#e3ebc2';
}

function onOutTable(id){
	document.getElementById(id).bgColor = '#f7f9ec';
}

