var jour
today= new Date ()
if(today.getDate()<=9)
{
jour = 0 + String (today.getDate()) 
}
else
{jour=String (today.getDate())}

if(today.getMonth()<=8)
{
mois = 0 + String (today.getMonth()+1) 
}
else
{mois=String (today.getMonth()+1)}
stripmois=today.getMonth()
stripjour=today.getDate()
stripdate= new Date (1994,stripmois,stripjour)

if(stripdate.getDay()==0)
{
document.write('<IMG name=strip width=600 height=427>')
}

else{
document.write('<IMG name=strip width=600 height=190>')
}

function show_strip() {
document.images.strip.src ="http://images.ucomics.com/comics/ch/1994/ch94"+mois+jour+".gif"
}