Hey everyone

! I am not very advanced in programing and am having trouble creating a javascript function inside of an Html page. I have two images side by side, and when there is a mouseover on one of the images i want the image to switch to a different image and want new text to be displayed underneath.
It took me about 12 hours to write the code below and it works to switch the image with another one on mouse over but i can't get the text to work.
so i'm trying to make the function display the text at the bottom of the page (<p>) when mouseover and display no text when Mouse out (for 2 different images)
thanks for any help in advance

.
<HTML><HEAD><TITLE>Woman's Lifecycle</TITLE>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type>
</HEAD>
<script LANGUAGE="JavaScript">
//first
Image1= new Image(66,200)
Image1.src = "line01x.gif"
Image2 = new Image(324,200)
Image2.src = "line01.gif"
function MOver() {
document.imageflipper.src = Image1.src; return true;
}
function MOut() {
document.imageflipper.src = Image2.src; return true;
}
//second
purple1= new Image(66,200)
purple1.src = "line02x.gif"
purple2 = new Image(66,200)
purple2.src = "line02.gif"
function MOver2() {
document.PURPLE.src = purple1.src; return true;
}
function MOut2() {
document.PURPLE.src = purple2.src; return true;
}
</SCRIPT>
</HEAD>
<TBODY>
<IMG NAME="imageflipper" SRC="line01.gif" onMouseOver="MOver()" onMouseOut="MOut()">
<IMG NAME="PURPLE" SRC="line02.gif" onMouseOver="purplex()" onMouseOut="purple()">
<p>
//where I want the text to appear on mouse over
//Ii want different text to be displayed on each image mouse over
</P>
</BODY></HTML>
</BODY></HTML>