function showPopup(thisContent)
{
    var baseDir = "/catholiccharities/";
	
	var strParams = "";

	if (thisContent == 'faq') {
	    strParams = 'toolbar=0,width=805,resizable=1,height=700,statusbar=no,scrollbars=1';
	    var popUrl = baseDir + thisContent + '.aspx';
	}
	else if (thisContent == 'privacy') {
	    strParams = 'toolbar=0,width=500,resizable=1,height=600,statusbar=no,scrollbars=1';
	    var popUrl = baseDir + thisContent + '.aspx';
	}
	else if (thisContent == 'QTVideo') {
	    strParams = 'toolbar=0,width=375,height=325,statusbar=no,scrollbars=0';
	    var popUrl = baseDir + 'video.html';
	}
	else {
	    strParams = 'toolbar=0,width=500,resizable=1,height=600,statusbar=no,scrollbars=1';
	    var popUrl = baseDir + thisContent;
	}
	
	
	if (navigator.appName.indexOf("Microsoft Internet")!=-1)
	{
		window.open(popUrl, 'popup', strParams);
	} else {
		window.open(popUrl, 'popup', strParams);
	}
}
