function getTitle(value){
// Pass 1:
// get the pathname of the document

var path= value.split("/");
var count = path.length-1;

// Pass 2:
// to get rid of Publish cgi parameters

var path2= (path[count]);
var filename  = path2.split("?");

return(filename);
}

function popup(thisUrl) {
        thisUrl = "/animatingdemocracy/emailafriend.asp?eurl=" + thisUrl;
	optionString = ('width=570,height=500,top=20,left=20,resizable=yes,toolbar=yes,menubar=yes,scrollbars=yes');
	mainWin = window.open(thisUrl,"print",optionString);
}

function openLinkWindow(thisUrl) {
        thisUrl = thisUrl.substring(5);
        thisUrl = "http://ww3.artsusa.org/" + thisUrl;
	mainWin = window.open(thisUrl,"print","width=425,height=400");
}
