My website it’s not showing on Internet Explorer completely

My website it’s not showing on Internet Explorer completely but its look fine on other web browsers. I’m a beginner on creating website please help me with coding. What should I do exactly!

Website: http://www.bluedotpainting.com/

When I open the IE Developer Tools, it reports a syntax error on line 56; which is the below code

<script language="JavaScript1.1">
  <!--

  var slideimages=new Array()
  var slidelinks=new Array()
  function slideshowimages(){
    for (i=0;i<slideshowimages.arguments.length;i++){
      slideimages[i]=new Image()
      slideimages[i].src=slideshowimages.arguments[i]
    }
  }

  function slideshowlinks(){
    for (i=0;i<slideshowlinks.arguments.length;i++)
      slidelinks[i]=slideshowlinks.arguments[i]
  }

  function gotoshow(){
    if (!window.winslide||winslide.closed)
      winslide=window.open(slidelinks[whichlink])
    else
      winslide.location=slidelinks[whichlink]
    winslide.focus() // not part of the else, should it be?
  }

// no closing //--> tag... if you have the opening <!-- you should have the closing too
  </script>

I see a couple of issues as documented in my comments above.

Thank you for the reply. Let me see if i can fix it

Can you explain how i can change it to make it work!?

Try this:

<script language="JavaScript1.1">
  <!--//
 
  var slideimages=new Array()
  var slidelinks=new Array()
  function slideshowimages(){
    for (i=0;i<slideshowimages.arguments.length;i++){
      slideimages[i]=new Image()
      slideimages[i].src=slideshowimages.arguments[i]
    }
  }
 
  function slideshowlinks(){
    for (i=0;i<slideshowlinks.arguments.length;i++)
      slidelinks[i]=slideshowlinks.arguments[i]
  }
 
  function gotoshow(){
    if (!window.winslide||winslide.closed)
      winslide=window.open(slidelinks[whichlink])
    else
      winslide.location=slidelinks[whichlink]
    winslide.focus()
  }
 
//-->
  </script>

Thank you Thank you so much cpradio you are really good its working now