function newsPopUp(wNews)
{	
	//alert('news'+wNews);
	$("#popupwindow > .innerwindow").html("");
	
	var arr = wNews.split("/");
	var str = arr[arr.length-1];
	
	$("#popupwindow > .innerwindow").load((str), function(){
			$('.subhilite').click(function(){
										   closePopWindow();
										   });
	});
	$("#popupwindow").fadeIn('fast');
	$("#blocker").fadeIn('fast');
  	// mywindow = window.open (wNews, "News","location=1,status=1,scrollbars=1,width=340,height=500");
} 

function peoplePopUp(wPeople)
{
	//alert('people'+wPeople);
	$("#popupwindow > .innerwindow").html("");
	$("#popupwindow > .innerwindow").load(escape(wPeople), function(){
																	
				var str = "<p align='right'><a href='javascript:closePopWindow();' class='subhilite'>Close Window</a></p>";													
																	
				$("#popupwindow > .innerwindow").html(str + $("#popupwindow > .innerwindow").html() + "<br/><br/>"+str);			
																	
																	});
	$("#popupwindow").fadeIn('fast');
	$("#blocker").fadeIn('fast');
  	 //mywindow = window.open (wPeople, "People","location=1,status=1,scrollbars=1,width=340,height=500");
} 

function closePopWindow()
{
	$("#popupwindow").fadeOut('fast');
	$("#blocker").fadeOut('fast');
}

