function highlightButton(obj) {
	obj.style.backgroundColor = "#DFDCD8";
	obj.style.border = "1px solid black";
}

function lowlightButton(obj) {
	obj.style.backgroundColor = "#F5F5F5";
	obj.style.border = "1px solid #F5F5F5";
}

function addToCart(productId,thisObject) {

	thisObject.form['products_id'].value = productId;
	return true;

}

function enablepckreditor() {
	
	if (document.getElementById) {
		var obj = document.getElementById('payment_pckreditor');
		obj.checked = true;
	} else {
		var obj = document.all['payment_pckreditor'];
		obj.checked = true;
	}

	return true;
}