
// Open merchant list window
	function openMerchantById(m_id) 
	{
		var winwidth = 996; 
		var winheight = 650; 
		var winleft = (screen.width / 2) - (winwidth / 2); 
		var wintop = (screen.height / 2) - (winheight / 2); 
			var newWindow;
			var props = 'scrollBars=yes,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=' + winwidth + ',height=' + winheight + ',top=' + wintop + ',left=' + winleft;
			newWindow = window.open('/merchant/merchantlistdetail.aspx?Merchant_Id='+m_id, '', props);
	}
	function openMerchantByListId(m_id,mlist) 
	{
		var winwidth = 996; 
		var winheight = 650; 
		var winleft = (screen.width / 2) - (winwidth / 2); 
		var wintop = (screen.height / 2) - (winheight / 2); 
			var newWindow;
			var props = 'scrollBars=yes,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=' + winwidth + ',height=' + winheight + ',top=' + wintop + ',left=' + winleft;
			newWindow = window.open('/merchant/merchantlistdetail.aspx?MerchantList_Id='+m_id, '', props);
			
	}
	function openMerchantByGWId(m_id,g_id,s_no) 
	{
	
		window.location.href = '/merchant/webcastlisting.aspx';
		
		/*	  
		var winwidth = 996; 
		var winheight = 650; 
		var winleft = (screen.width / 2) - (winwidth / 2); 
		var wintop = (screen.height / 2) - (winheight / 2); 
			var newWindow;
					var props = 'scrollBars=yes,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=' + winwidth + ',height=' + winheight + ',top=' + wintop + ',left=' + winleft;
			newWindow = window.open('/merchant/merchantlistdetail.aspx?Merchant_Id='+m_id+'&webcast_Id='+g_id+'&Seq_No='+s_no, '', props);
		*/
	}