function removeBook(bookId) {
	//alert("SDfsdf");
	if(confirm("Do you want to remove this book from your order")) {
		document.order.frmAction.value = "delete";
		document.order.bookId.value = + bookId;
		document.order.submit();
		return;
	}
}
function showPrint(btId) {
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	
	winWidth =  650;
	winHeight = 600;
	
	sLeft = (sWidth - winWidth) / 2;
	sTop = (sHeight - winHeight) / 2;
	
	window.open("showPrint.php?btId=" + btId, "Label", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=1,resizable=0");
	return;
}
function printpage()
 {
  window.print();
 }

function shownop(){
	var a=document.registration.payType.value;
	//alert(a);
	if(a=="Paypal"){
	document.getElementById("nop").style.visibility="visible";
	//alert("sfsdf");
	}
	else{
	document.getElementById("nop").style.visibility="hidden";
	}
}
function cancelBook(orId) {
	//alert("SDfsdf");
	if(confirm("Are you sure you want to cancel this order?")) {
		document.order.frmAction.value = "Cancel";
		document.order.orId.value = + orId;
		document.order.submit();
		return;
	}
}
