// JavaScript Document
function $get(el) {

	var obj = document.getElementById(el);
	if (obj) {
		return obj;		
	} else {
		return null;
	}
} 

function confirmLogout() {
	return confirm('Are you sure you wish to logout of this site ?	\nAny items stored in your basket not saved as a quote will be lost.');
}

function confirmDeleteItem() {
	return confirm('Are you sure you wish to remove this item from your basket ?');	
}
function confirmDeleteQuote() {
	return confirm('Are you sure you wish to remove this quote ?');	
}