function openSharePage(nameVar, id, LID, CID)
{
	var l = (screen.width - 400)/2;
	var t = (screen.height - 340)/4;
	nameVar = nameVar.replace("'", "");		
	var loc = window.location;	
	window.open('/share.aspx?name='+ nameVar + '&loc=' + loc + "&id=" + id + "&LID="+ LID + "&CID=" + CID,'ShareAFriend', 'width=400px,height=340px,left='+l+',top='+t+',toolbar=0');	
}

