function winclose() {
	window.close();
}

function jump(url) {
	opener.location.href = url;
	window.close();
}

function email_story_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=no,location=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=540,height=540");
}

function postcard_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=yes,location=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=550,height=500");	
}

function content_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=yes,location=yes,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=640,height=480");
}

function photo_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=yes,width=500,height=480");
}

function poll_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=no,location=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=450,height=300");
}

function almanac_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=no,location=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=360,height=500");
}

function almanac_form_window(sForm) {
	self.name = 'popUpParent';
	newwindow = open("","contentwindow","scrollbars=no,location=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=360,height=500");
	sForm.target = "contentwindow";
	return true;
}

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 dir_coupons_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=auto,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=480,height=460");
}

function road_report_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open("roadreport.php?url=" + sURL,"contentwindow","scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=500,height=350");
}

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 whats_coming_window(sURL) {
	self.name = 'popUpParent';
	newwindow=open(sURL,"contentwindow","scrollbars=no,location=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=yes,width=280,height=360,left=300,screenX=300,top=200,screenY=200");
}

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;
        }
    }
}


