/*-- //
 copyright 2008 Dental Excellence / created by kp Creation
  // --*/
function randompicture() {
  index = Math.floor(Math.random() * pic.length);
  tmp = '<img src="' + pic[index] + '" width="980px" height="183px" />'
  //alert('pic[index] = '+ pic[index] + '.');
  document.write(tmp);
}

