I participated in the Women’s Health Rights Honk and Wave organized by Planned Parenthood on Wednesday. This was in protest to the Supreme Court’s recent decision to uphold the Federal Ban on abortion. Mind you, six white guys have decided what the fate of women’s health issues are in this country. Women, we have been raped.
Here are some photos:





Jeffrey D. Allred, Deseret Morning News
Planned Parenthood Protests Supreme Court Ban of Partial Birth Abortions
April 25th, 2007 @ 3:42pm
(KSL News) Demonstrations across the country and here in Utah showed their opposition today to a Supreme Court abortion ruling.
In Salt Lake, women’s rights advocates held signs and rallied against the court’s decision to ban partial birth abortions.
Demonstrators say the abortion ruling opens the door to lawmakers to make medical decisions for American women.
The recent ruling is the court’s first decision to uphold a federal ban since Roe versus Wade.
// ======================================================================
var voteArray = new Array;
var voteWindow = null;
var replyWindow = null;
var voteCaller = null;
var replyCaller = null;
var voteTimeout = null;
var replyTimeout = null;
var voteTags = [“Ditto”,”Funny”,”Insightful”,”Persuasive”,”Witty”,”Disagree”,”Inappropriate”,”Huh?”,”Offtopic”,”Offensive”,”Troll”];
var voteVals = [1,1,1,1,1,-1,-1,-1,-1,-1,-1];
var orgsrc = “”;
var voteFade = null;
img1 = new Image(124,20);
img1.src = “/resources/comments/graphics/sel_n_on.gif”;
img1.style.position = “relative”;
img1.style.zIndex = “99”;
img2 = new Image(124,20);
img2.src = “/resources/comments/graphics/sel_y_on.gif”;
img2.style.position = “relative”;
img2.style.zIndex = “99”;
// ======================================================================
function voteSub()
{
if (voteTimeout) window.clearTimeout(voteTimeout);
voteTimeout = null;
}
// ======================================================================
function replySub()
{
if (replyTimeout) window.clearTimeout(replyTimeout);
replyTimeout = null;
}
// ======================================================================
function voteDelayOff()
{
voteTimeout = null;
if (voteCaller) {
voteCaller.removeChild(voteWindow);
voteCaller.style.position = “static”;
voteCaller = null;
}
}
// ======================================================================
function replyDelayOff()
{
replyTimeout = null;
if(replyCaller) {
replyCaller.removeChild(replyWindow);
replyCaller.style.position = “static”;
replyCaller = null;
}
}
// ======================================================================
function voteOff(vid)
{
var rdiv = document.getElementById(‘rate’+vid);
if (vid && rdiv.innerHTML.charAt(0) == ‘[‘) return;
if (vid) document.images[‘voteb’+vid].src = ‘/resources/comments/graphics/vote5.gif’;
voteTimeout = setTimeout(‘voteDelayOff()’,200);
}
function replyOff()
{
replyTimeout = setTimeout(‘replyDelayOff()’,200);
}
// ======================================================================
function voteOn(vid)
{
var rdiv = document.getElementById(‘rate’+vid);
if (rdiv.innerHTML.charAt(0) == ‘[‘) return;
// disable the timeout
if (voteTimeout) {
voteTimeout = window.clearTimeout(voteTimeout);
voteDelayOff();
}
// Save the parameters
voteID = vid;
// light up the button
document.images[‘voteb’+vid].src = ‘/resources/comments/graphics/vote4.gif’;
// keep on or turn off another buttons menu
var newCaller = document.getElementById(‘vote’+vid);
if (voteCaller) {
if (voteCaller == newCaller) return;
voteCaller.removeChild(voteWindow);
voteCaller = null;
}
// build menu and display
voteCaller = newCaller;
voteWindow = document.createElement(“div”);
var sHTML = “”;
voteWindow.className = ‘loginWin’;
sHTML = “ “;
voteWindow.innerHTML = sHTML;
voteWindow.style.position = “absolute”;
voteWindow.style.left = “0px”;
voteCaller.style.position = “relative”;
voteCaller.appendChild(voteWindow);
}
// ======================================================================
function replynotice(id, mode)
{
// disable the timeout
if (replyTimeout) {
replyTimeout = window.clearTimeout(replyTimeout);
replyDelayOff();
}
// keep on or turn off another buttons menu
var newCaller = document.getElementById(‘comment_’+id);
if (replyCaller) {
if (replyCaller == newCaller) return;
replyCaller.removeChild(replyWindow);
replyCaller = null;
}
// build menu and display
replyCaller = newCaller;
replyWindow = document.createElement(“div”);
var sHTML = “”;
replyWindow.className = ‘loginWinb’;
sHTML = “ “;
replyWindow.innerHTML = sHTML;
replyWindow.style.position = “absolute”;
replyWindow.style.left = “0px”;
replyWindow.style.zIndex = “99”;
replyCaller.style.position = “relative”;
replyCaller.appendChild(replyWindow);
}
// ======================================================================
function voteNow(value,label)
{
if (!voteWindow) return false;
// turn off other faders
if (voteFade != null) document.images[voteFade].src = ‘/resources/comments/graphics/voteOff2.gif’;
// light up the button
voteFade = ‘voteb’+voteID;
if (value >= 1) document.images[voteFade].src = ‘/resources/comments/graphics/vote_yx3.gif’;
else document.images[voteFade].src = ‘/resources/comments/graphics/vote_nx3.gif’;
// set the rating text
var rdiv = document.getElementById(‘rate’+voteID);
var sign = ”;
var color = ‘900’;
if (value > 0) {
sign = ‘+’;
color = ‘090’;
}
rdiv.innerHTML = “[ “+label+” “+sign+value+” ]”//voteDone;
document.getElementById(“rmiCmd”).src = “/scripts/vote.php?name=slc:103:148:1146759:c:”+voteID+”&tag=”+label;
voteDelayOff();
return false;
}
// ======================================================================
function voteHistory(id)
{
histid = document.getElementById(‘hist’ + id);
var tagstr = histid.value;
tags = Array();
tags = tagstr.split(“:”);
var sHTML = ”;
var pos_sHTML = ”;
var neg_sHTML = ”;
var votetotals = 0;
for (var i = 0; i 0)
pos_sHTML += “
” + tagArray[tags[i]][‘name’] + “: +” + tags[++i] + “n”;
else
neg_sHTML += “
” + tagArray[tags[i]][‘name’] + “: -” + tags[++i] + “n”;
votetotals += parseInt(tags[i]);
}
}
sHTML += pos_sHTML;
sHTML += neg_sHTML;
sHTML += “
votes: ” + votetotals + “”;
var taghistparent = document.getElementById(‘rate’ + id);
taghistchild = document.createElement(“div”);
taghistchild.innerHTML = sHTML;
taghistchild.style.position = “absolute”;
taghistchild.className = ‘votehistory’;
taghistchild.id = “listhist” + id;
taghistparent.appendChild(taghistchild);
}
// ======================================================================
function voteHistoryOff(id)
{
var taghistparent = document.getElementById(‘rate’ + id);
taghistchild = document.getElementById(‘listhist’ + id);
taghistparent.removeChild(taghistchild);
}
// ======================================================================
function avgrow(id,memid)
{
document.getElementById(“avctnr” + id).style.width=”90px”;
document.getElementById(“avctnr” + id).style.height=”90px”;
document.getElementById(“avctnr” + id).style.position=”absolute”;
document.getElementById(“avctnr” + id).style.zIndex=”20″;
orgsrc = document.getElementById(“av” + id).src
document.getElementById(“av” + id).style.position=”relative”;
document.getElementById(“av” + id).src=”
http://www.ksl.com/emedia/avatars/slc/ksl/” + memid + “.jpg”;
}
// ======================================================================
function avshrink(id,memid)
{
document.getElementById(“av” + id).src = orgsrc;
document.getElementById(“avctnr” + id).style.position=””;
document.getElementById(“av” + id).style.position=””;
document.getElementById(“avctnr” + id).style.width=”30px”;
document.getElementById(“avctnr” + id).style.height=”30px”;
}
// ======================================================================
function collapse(id, state)
{
if (document.getElementById(‘colflag’ + id).value == 0)
{
if(state == “collapse”)
{
document.getElementById(‘collapsed’ + id).innerHTML = ‘(show comment)’;
document.getElementById(‘collapsed’ + id).setAttribute(“onClick”,”return expand(” + id +”, ‘collapse’)”);
document.getElementById(‘comment_’ + id).setAttribute(‘class’, ”);
}
new Effect.SlideUp(‘message’ + id);
document.getElementById(‘reporttab’ + id).style.display = “none”;
document.getElementById(‘vote’ + id).style.display = “none”;
document.getElementById(‘comment_’ + id).style.display = “none”;
document.getElementById(‘replyimg_id’ + id).style.display = “none”;
document.getElementById(‘subjecttitle’ + id).style.color = “#bbb”;
document.getElementById(‘subject’ + id).style.backgroundColor = “#f6f6ec”;
document.getElementById(‘subject’ + id).style.borderColor = “#ddd”;
document.getElementById(‘collapsed’ + id).style.display = “inline”;
document.getElementById(‘colflag’ + id).value = 1;
document.getElementById(‘rate’ + id).setAttribute(“onmouseover”, “”);
document.getElementById(‘rate’ + id).setAttribute(“onmouseout”, “”);
}
return false;
}
function expand(id, state)
{
if (document.getElementById(‘colflag’ + id).value == 1)
{
if(state == “collapse”)
{
document.getElementById(‘collapsed’ + id).innerHTML = ‘(hide comment)’;
document.getElementById(‘collapsed’ + id).setAttribute(“onClick”,”return collapse(” + id +”, ‘collapse’)”);
document.getElementById(‘comment_’ + id).className = ‘reply’;
document.getElementById(‘rate’ + id).style.left = ‘0px’;
}
else
document.getElementById(‘collapsed’ + id).style.display = “none”;
new Effect.SlideDown(‘message’ + id);
document.getElementById(‘vote’ + id).style.display = “”;
document.getElementById(‘comment_’ + id).style.display = “”;
document.getElementById(‘replyimg_id’ + id).style.display = “”;
document.getElementById(‘subjecttitle’ + id).style.color = “”;
document.getElementById(‘subject’ + id).style.backgroundColor = “”;
document.getElementById(‘subject’ + id).style.borderColor = “”;
document.getElementById(‘colflag’ + id).value = 0;
document.getElementById(‘rate’ + id).setAttribute(“onmouseover”, “voteHistory(” + id + “)”);
document.getElementById(‘rate’ + id).setAttribute(“onmouseout”, “voteHistoryOff(” + id + “)”);
document.getElementById(‘reporttab’ + id).style.display = “”;
}
}
tagArray = Array();
tagArray[1] = Array();
tagArray[1][‘val’] = ‘1’;
tagArray[1][‘name’] = ‘ditto’;
tagArray[2] = Array();
tagArray[2][‘val’] = ‘1’;
tagArray[2][‘name’] = ‘funny’;
tagArray[3] = Array();
tagArray[3][‘val’] = ‘1’;
tagArray[3][‘name’] = ‘insightful’;
tagArray[4] = Array();
tagArray[4][‘val’] = ‘-1’;
tagArray[4][‘name’] = ‘huh?’;
tagArray[5] = Array();
tagArray[5][‘val’] = ‘-1’;
tagArray[5][‘name’] = ‘troll’;
tagArray[8] = Array();
tagArray[8][‘val’] = ‘1’;
tagArray[8][‘name’] = ‘witty’;
tagArray[13] = Array();
tagArray[13][‘val’] = ‘-1’;
tagArray[13][‘name’] = ‘disagree’;
tagArray[10] = Array();
tagArray[10][‘val’] = ‘-1’;
tagArray[10][‘name’] = ‘inappropriate’;
tagArray[7] = Array();
tagArray[7][‘val’] = ‘-1’;
tagArray[7][‘name’] = ‘offensive’;
tagArray[6] = Array();
tagArray[6][‘val’] = ‘-1’;
tagArray[6][‘name’] = ‘offtopic’;
tagArray[12] = Array();
tagArray[12][‘val’] = ‘1’;
tagArray[12][‘name’] = ‘persuasive’;
The Salt Lake Tribune has posted a brief mention of yesterday’s rally that I attended.

PLANNED PARENTHOOD AND ABORTION-RIGHTS SUPPORTERS…
(Al Hartmann/The Salt Lake Tribune )
Today a rally was held at the Utah State Capitol by Planned Parenthood and the ACLU to lobby for a “no” vote to H.B. 235, the bill that originally would have banned abortions in Utah, but has now been reverted back to being a “trigger” bill.
The prevailing message was that women must retain the right to do what they want with their own bodies and the way to avoid abortions is by providing sex education (and not just abstinence) as well as legal and safe abortions if needed.
Pom Poms Not Bomb Bombs, Utah’s Radical Cheerleaders, of which I am a member, participated. Here is the appropro cheer we did:
2-4-6-8!
Women’s care is second rate!
That’s not decent in our state!
We want access not debate!
Uh-uh, uh, uh Continue reading →
I am cautiously optimistic after seeing this in today’s news: Abortion bill opposed: 52% don’t support spending millions on Roe challenge
According to a poll conducted by the Deseret News, a little over half of those polled do not want to spend money on this issue. I am optimistic because it means that folks are thinking now about what the government should be spending money on:
Services and Programs, not personal and moral issues. It’s o.k. not to believe in abortion. It’s not o.k. to spend millions of dollars taking away a woman’s right to have one.
If you read the entire article, you will see that there are lawmakers who won’t stop, though and that there are people stepping forward with tons of money to see that the bill goes through and that ensuing litigation is funded.
Where are these people with this money for food for the starving and healthcare for the poor?
It’s bad enough that the men of our legislature are making decisions regarding women’s reproductive choices for women of our state. Now they are continuing to “put women in their place” by preventing them from other health care needs.
A House Committee killed a bill for healthcare that would potentially prevent a fatal form of cancer in women.
HB358 would have given the Utah Department of Health $1 million to educate females about cervical cancer and immunize girls and young women against it with the new Gardasil vaccine. Bill sponsor Rep. Karen Morgan, D-Cottonwood Heights, said she thought the bill would pass out of the House Health and Human Services Committee.
“Many people are afraid of something new,” she said. “I think these are individuals who are against immunization altogether. But this is the first vaccine to protect against cancer.”
Upon reading the article, it is clear that conservative lobbyists in this state have had influence over the death of this bill because heaven forbid we provide any kind of education on health care to young girls and teenagers.
They might learn something and that would be (gasp!)unthinkable.
So women of Utah remember your place.
A Maine physician has had a post published on Common Dreams:What it Meant When Abortion Was Illegal.
He describes the anger and frustration on the part of his father, a physician who was also a Republican, family man, and well respected community member, when he couldn’t save a 16 year old from an abortion-gone-wrong by an unskilled abortionist in the early 1900’s.
The article speaks for itself.
I learned from today’s Deseret News that Salt Lake has a women’s radio station: KUTR AM-820. I never knew this! An article in today’s D-News about an Iraqui Women’s Radio Station revealed this.
The article is about the Iraqi women’s radio station seeking support. It’s spokeswoman, Bushra Jamil, a human rights officer in Baghdad, will speak the the Salt Lake City Main Library at 7 p.m. Wednesday, April 19; at the University of Utah’s Women’s Resource Center on Thursday, April 20, at noon; and on Friday at the university’s Hinckley Institute of Politics at noon.
There’s a sense of urgency on Radio Al-Mahaba, Baghdad’s “Voice of Iraqi Women.” The station, which debuted a year ago, wants to educate women about their rights in a country where those rights are in a state of flux. It also gives Iraqi women a chance to express their opinions on everything from husbands to politics.
“We tell about their dreams, their suffering, their hopes,” explained Radio Al-Mahaba spokeswoman Bushra Jamil in a phone call from Baghdad. Jamil will be in Salt Lake City next week, where Utah friends she has never met are hoping to raise enough money to replace Al-Mahaba’s transmitter, destroyed by a bomb last fall.
Continue reading →