/* ***********************************************************************************************************
* www.THEBIGBAND.co.uk - Site Design by George Frost                                                         *
**************************************************************************************************************
* Location:       /scripts/shop.js                                                                           *
* Last Changed:   07/05/10  by  George Frost                                                                 *
*                 Copyright 2010 by George Frost                                                             *
**************************************************************************************************************
* Notes:                                                                                                     *
* -                                                                                                          *
* -                                                                                                          *
* -                                                                                                          *
* -                                                                                                          *
* -                                                                                                          *
*********************************************************************************************************** */


function updatePrice(c, n) {
	if (n == "") {
		return;
	} else {
		p = n.substring(n.lastIndexOf("£")+1, n.length);
		document.getElementById("price"+c).value = p;
	}
}
function updateQty(c, n) {
	if (n == "") {
		return;
	} else {
		document.getElementById("qty"+c).value = n;
	}
}