var popstyle = 'popover';

//Turnoff popup for old browsers
if (typeof document.body.style.maxHeight == "undefined"){
     popstyle='window';
}

function bigZoom(bigUrl){
	var img = new Image();
	img.src = bigUrl;

	$(img).load(function(){
		open_popover(img);
	})
}

function open_popover(img){
	if(popstyle=='popover'){
		$('div#storeItemFlash').css('visibility', 'hidden');
		var content = "<div id='popupImage'><img src='"+img.src+"'></div>";

		$.nyroModalManual({
			bgColor: 'black',
			autoSizeable:true,
			closeButton: '<a href="#" class="nyroModalClose" id="nyroCloseBut" title="close"></a>',
			endRemove:function(){
				$('div#storeItemFlash').css('visibility', 'visible');
			},
			content: content
		});
	}

	if(popstyle=='window'){
		if(!window.open(img.src, 'newwindow', config="width=790, height=550, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no")){
			alert('You may have to deactivate your popup blocker to view this image.');
		}
	}
}