﻿var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();
function showAddPlus(clubid)
{
    var Brtype  = BrowserDetect.browser		    		
							
	if(Brtype=="Explorer")
	{
		window.showModalDialog("PlusProgram.aspx?id="+clubid,clubid,"dialogHeight:606px;dialogWidth:515px;center:(yes);edge:(sunken);resizable:(No);status:(No)");	
	}
	else if(Brtype=="Firefox")
	{
		 window.open('PlusProgram.aspx?id=<%=clubid%>','<%=clubid%>','width=515,height=606,scrollbars=1');																	
	}
	else
	{
		window.open('PlusProgram.aspx?id=<%=clubid%>','<%=clubid%>','width=515,height=606,scrollbars=1');		
	}	
}
function playVideo2(videopath)
{
    var Brtype  = BrowserDetect.browser		    		
    							
	if(Brtype=="Explorer")
	{
	    window.showModalDialog("../storefront/playvidep.aspx?videopath="+videopath,"dialogHeight:400px;dialogWidth:445px;center:(yes);edge:(sunken);resizable:(No);status:(No)");	
	}
	else if(Brtype=="Firefox")
	{
		 window.open('../storefront/playvidep.aspx?videopath=<%=videopath%>','<%=videopath%>','width=445,height=400,scrollbars=1');																	
	}
	else
	{
		window.open('../storefront/playvidep.aspx?videopath=<%=videopath%>','<%=videopath%>','width=445,height=400,scrollbars=1');		
	}	
}


function playClubVideoforadmin(videoclip)
{
    var Brtype  = BrowserDetect.browser		    		
    							
	if(Brtype=="Explorer")
	{
	    window.showModalDialog("../storefront/playClubvideo.aspx?clip="+videoclip,"dialogHeight:300px;dialogWidth:430px;center:(yes);edge:(sunken);resizable:(No);status:(No)");	
	}
	else if(Brtype=="Firefox")
	{
		 window.open('../storefront/playClubvideo.aspx?clip=<%=videoclip%>','<%=videopath%>','width=430,height=300,scrollbars=1');																	
	}
	else
	{
		window.open('../storefront/playClubvideo.aspx?clip=<%=videoclip%>','<%=videopath%>','width=430,height=300,scrollbars=1');		
	}	
}


function playVideo1(videopath)
{
    var Brtype  = BrowserDetect.browser		    		
    							
	if(Brtype=="Explorer")
	{
	    window.showModalDialog("../../storefront/playvidep.aspx?videopath="+videopath,"dialogHeight:400px;dialogWidth:445px;center:(yes);edge:(sunken);resizable:(No);status:(No)");	
	}
	else if(Brtype=="Firefox")
	{
		 window.open('../../storefront/playvidep.aspx?videopath=<%=videopath%>','<%=videopath%>','width=445,height=400,scrollbars=1');																	
	}
	else
	{
		window.open('../../storefront/playvidep.aspx?videopath=<%=videopath%>','<%=videopath%>','width=445,height=400,scrollbars=1');		
	}	
}
function PlayVideo(videoclip)
{
    var Brtype  = BrowserDetect.browser		    		
							
	if(Brtype=="Explorer")
	{
		window.showModalDialog("playClubvideo.aspx?clip="+videoclip,videoclip,"dialogHeight:400px;dialogWidth:445px;center:(yes);edge:(sunken);resizable:(No);status:(No)");	
	}
	else if(Brtype=="Firefox")
	{
		 window.open('playClubvideo.aspx?clip=<%=videoclip%>','<%=videoclip%>','width=445,height=400,scrollbars=1');																	
	}
	else
	{
		window.open('playClubvideo.aspx?clip=<%=videoclip%>','<%=videoclip%>','width=445,height=400,scrollbars=1');		
	}	
}

function PlayWineVideo(wineid)
{
     var Brtype  = BrowserDetect.browser		    		
							
	if(Brtype=="Explorer")
	{
		window.showModalDialog("playvideo.aspx?idwine="+wineid,wineid,"dialogHeight:400px;dialogWidth:445px;center:(yes);edge:(sunken);resizable:(No);status:(No)");	
	}
	else if(Brtype=="Firefox")
	{
		 window.open('playvideo.aspx?idwine=<%=wineid%>','<%=wineid%>','width=445,height=400,scrollbars=1');																	
	}
	else
	{
		window.open('playvideo.aspx?idwine=<%=wineid%>','<%=wineid%>','width=445,height=400,scrollbars=1');		
	}	
}
function PlayNewWineVideo(wineid)
{
     var Brtype  = BrowserDetect.browser		    		

	if(Brtype=="Explorer")
	{	   	 
		if(BrowserDetect.version=="6")
		{
			window.showModalDialog("playwinevideo.aspx?idwine="+wineid,wineid,"dialogHeight:292px;dialogWidth:383px;center:(yes);edge:(sunken);resizable=no;status=no;scroll=no");	
		}
		else
		{
			window.showModalDialog("playwinevideo.aspx?idwine="+wineid,wineid,"dialogHeight:252px;dialogWidth:373px;center:(yes);edge:(sunken);resizable=no;status=no;scroll=no");	
		}
	}
	else if(Brtype=="Firefox")
	{
		 window.open('playwinevideo.aspx?idwine=<%=wineid%>','<%=wineid%>','width=373,height=252,scrollbars=0');																	
	}
	else
	{
		window.open('playwinevideo.aspx?idwine=<%=wineid%>','<%=wineid%>','width=373,height=252,scrollbars=0');		
	}	
}

