/**
 * jQuery DOM ready handler.
 **/
$(document).ready(function() {
	
	// Fancybox
	if( jQuery.isFunction(jQuery.fn.fancybox) ){
		$(".zoom").live('click', function(){
		    jQuery.fancybox({
		        'overlayColor':'#000000',
				'autoScale':true,
		        'href': $(this).attr('href')
		    });
		    return false;
		});
	}
		
});

var newWindow = null;

function popup(theURL, winName, features) { 
	if (winName != "aurora_gift_voucher"){
		closePopup(winName);
	}
	newWindow=window.open(theURL,winName,features);
	newWindow.focus();
}

function closePopup(winName) {
	if (newWindow && newWindow.open && !newWindow.closed) newWindow.close();
}

