function getIt(actioni, item, repage){
	document.forms.shopform.actioni.value=actioni;
	document.forms.shopform.item.value=item;
	document.forms.shopform.repage.value=repage;
	if(actioni!=""){
		document.forms.shopform.reload.value="yes";
	}
	document.forms.shopform.submit();
}

function showhide(aaid){
	a=document.getElementById(aaid).style.display;
	newstatus='';
	if(a==''){			newstatus='none';		}
	if(a=='none'){		newstatus='';			}
	if(a=='block'){		newstatus='none';			}
	document.getElementById(aaid).style.display=newstatus;
}

