function clrSrch(){
	sVar = document.getElementById('tq').value;
	if (sVar =='Enter your search here'){
		document.getElementById('tq').value = '';
	}
	
}
function buyFrm(i){
	window.open("https://www.old-church-galleries.com/buy.asp?id=" + i,"","scrollbars=yes,resizable=yes,statusbar=yes,titlebar=yes,status=yes,width=650,height=600");

}
function isReserved(){
	alert('Sorry, this item has already been reserved by another customer.');
}
function delBiog(iBiog){
	if (confirm('Are you sure you want to permanently DELETE THIS ENTIRE BIOGRAPHY?')){
		self.location.href = '/admin/default.asp?do=delbiog&id=' + iBiog	
	}
}

function delNews(iNews){
	if (confirm('Are you sure you want to permanently delete this news item?')){
		self.location.href = '/admin/default.asp?do=delnews&id=' + iNews
	}
}

function delOrder(iID){
	if (confirm('By returning this item to stock, card details etc will be PERMANENTLY DELETED and the item will be available for others to reserve.\n\nDo you want to proceed?')){
		self.location.href = '/admin/default.asp?do=delorder&id=' + iID
	}
}
function delOrderAndItem(iID){
	if (confirm('By completing this sale all card details etc, will be PERMANENTLY DELETED and the item will be deleted from stock\n\nDo you want to proceed?')){
		self.location.href = '/admin/default.asp?do=delorderanditem&id=' + iID
	}
}
function delItem(iID){
	if (confirm('The item will be PERMANENTLY DELETED from stock\n\nDo you want to proceed?')){
		self.location.href = '/admin/default.asp?do=delitem&id=' + iID
	}
}
