
showCartContents = function(){
	Dialog.alert({url: "/stores/viewCartContents", 
					 options: {method: 'get'}},
					 {className: "alphacube", width:760, height:400, okLabel: "Close"});	
}



Event.observe(window, 'load', function(){
	//showDebug();
	Event.observe('viewCartLink', 'click', function(){
		// alert('you clicked');
		
		/*var win = new Window({
					  title: "Cart Contents", 
					  top:70, left:100, width:640, height:400, 
					  url: webroot+"/stores/viewCartContents", 
					  showEffectOptions: {duration:1}
					  });
		win.show(); */
		showCartContents(); 		
	});
	
});