var currentbigprevid;

function lkshowbigprev(bigprevid){
	if(currentbigprevid && currentbigprevid!=bigprevid){
		lkhidebigprev(currentbigprevid);
	}
 	var o = document.getElementById(bigprevid);
 	if(o){
 		o.style.display = 'inline';
 		currentbigprevid = bigprevid;
 	}
}
function lkhidebigprev(bigprevid){
 	var o = document.getElementById(bigprevid);
 	if(o){
 		o.style.display = 'none';
 	}
}