// JavaScript Document
function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="http://www.healthsourcemag.com/images/images/maincenter_2.jpg"
  myimages[2]="http://www.healthsourcemag.com/images/images/maincenter_2.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.healthsourcemag.com/news/publish/antiaging/A_Glass_of_Local_Wine_a_Day_May_Keep_Your_Doctor_Away.shtml"
  imagelinks[2]="http://www.healthsourcemag.com/news/publish/heart/Better_Heart_Health_Conversation_with_the_Cardiologists.shtml"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" border=0 style=margin:0px;>')
}

  random_imglink()
  
  
  
  function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}