
// Open Refer a friend in popup window
	
function openReferaFriend() 
	{
		var ua, s, i, winwidth, winheight;
		
		ua = navigator.userAgent;

		s = "MSIE";
		if (ua.indexOf(s) > 0) {
		    winwidth = 617; 
		    winheight = 348; //363
		    
		}else{ //For Non IE Browser
			//alert ("mozilla");
		    winwidth = 600; 
		    winheight = 337; //363
		}
		
		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('/Membership/RefertoFriend.aspx', '', props);
	}


function openSendEmail(a_id) {
	
	var ua, s, i, winwidth, winheight;
		
		ua = navigator.userAgent;
		s = "MSIE";
		if (ua.indexOf(s) > 0) {
		    winwidth = 522; 
		    winheight = 344; //363
		    
		}else{ //For Non IE Browser
			//alert ("mozilla");
		    winwidth = 506; 
		    winheight = 330; //363
		}
	
	
	var winleft = (screen.width / 2) - (winwidth / 2); 
	var wintop = (screen.height / 2) - (winheight / 2); 

		var newWindow;
		var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=' + winwidth + ',height=' + winheight + ',top=' + wintop + ',left=' + winleft;
		newWindow = window.open('/cms/SendEmail.aspx?from=Article&Editorial_Id='+a_id, '', props);
	}



