
function email_story_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=yes,location=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=500,height=500");
}

function paperpromo_popup_window(sURL, width, height) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=no,location=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=" + width + ",height=" + height);
}

function external_site_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=yes,location=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,status=yes,width=640,height=480,left=300,screenX=300,top=200,screenY=200");
}

function dir_map_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=auto,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=500,height=520");
}

function directory_entry_external_link(id, popup) {
    if (id > 0) {
        if (popup) {
            external_site_window('/directories/rd.php?id=' + id);
        } else {
            window.location = '/directories/rd.php?id=' + id;
        }
    }
}
