// function to logout of session
function Logout() {
	var blnConfirm 	= 	window.confirm('Are you sure you want to logout of your account?');
	
	if (blnConfirm) {
		window.location 	= 	'/signout';
	}
	return blnConfirm;
}


// image changer into larger image
function tccUpdateProductImage(showimage) {
	var productimage = document.getElementById('productimage');
	productimage.src = showimage;
}


