/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

jQuery(function($){
	if(typeof message_display_duration== "undefined") message_display_duration = 5000;
	window.setTimeout(function(){
		$("#site_message.hide").slideUp();
	}, message_display_duration);
	$("a.js-popup").click(function(event){
		window.popup = window.open(this.href,"PrintCoupon","resizable=yes,scrollbars=yes,status=no");
		if(window.popup) return false;
		event.preventDefault();
	});
	$("a.js-confirm").click(function(event){
		var result = window.confirm("This operation cannot be undone.\nClick on OK button to continue");
		if(!result){
			event.preventDefault();
		}
	});

});


