function searchbox_init() {
	$("#search1").focus(function () { 
		$(this).css("color","black");
		if ( $(this).val() ==  'Search Creatron Inc' ) {
			$(this).val('');
		}
	});
	$("#search1").blur(function () {
		$(this).css("color","gray");
		if ( $(this).val() ==  '' ) {
			$(this).val('Search Creatron Inc');
		}
	});
}

function DeleteFromCart(r) {
	if (confirm('Are you sure you want to delete this item from your cart?')) location.href = 'cart.php?action=deleteFromCart&row=' + r;
}