function dailyfact() {

now = new Date();
which = Math.floor( now.getDate() % 12 );

document.writeln("");

if (which==0) {
document.writeln("&nbsp;There were 47 reported homicides in Alabama related to domestic violence in 1998.");

} else if (which==1) {
document.writeln("&nbsp;Females were the victims of 3 of every 4 of the murders attributable to intimates in 1996.");

} else if (which==2) {
document.writeln("&nbsp;Most state laws classify the crime of domestic violence as a misdemeanor.");

} else if (which==3) {
document.writeln("&nbsp;42% of murdered women are killed by their husbands or boyfriends.");

} else if (which==4) {
document.writeln("&nbsp;30% of women receiving emergency medical treatment have injuries caused by battering.");

} else if (which==5) {
document.writeln("&nbsp;DV injures more women than auto accidents, sexual assaults and muggings combined.");

} else if (which==6) {
document.writeln("&nbsp;U.S. women are more likely to be assaulted by their male partners than by anyone else.");

} else if (which==7) {
document.writeln("&nbsp;31 states have acted to prohibit discrimination of DV victims by insurance companies.");

} else if (which==8) {
document.writeln("&nbsp;Up to 3/4 of domestic assaults reported to police occurred after the couples separated.");

} else if (which==9) {
document.writeln("&nbsp;Each year, more than one million women seek medical assistance for battering injuries.");

} else if (which==10) {
document.writeln("&nbsp;92% of physically abused women didn't discuss the incidents with their physicians.");

} else if (which==11) {
document.writeln("&nbsp;Every year, an estimated 4 million women are battered by their husbands or partners.");

}

document.writeln("");

}