/******************************************************************************
*                                                                             *
*     customjava.js                                                           *
*                                                                             *
*     Preloads navigator images on Postgrad / Short Courses website           *
*                                                                             *
******************************************************************************/


function popup_window()
{
 newwin = window.open('','popup','status=yes,width=560,height=540,screenX=100,left=100,screenY=110,top=110,scrollbars=1,resizable=1');
}


function preloadImages()
{
 if (document.images) 
  {
 
   titlebar1       = new Image();
   titlebar1.src   = "graphics/titlebar/welcome.jpg";

   titlebar2       = new Image();
   titlebar2.src   = "graphics/titlebar/domestic.jpg";

   titlebar3       = new Image();
   titlebar3.src   = "graphics/titlebar/commercial.jpg";

   titlebar4       = new Image();
   titlebar4.src   = "graphics/titlebar/ironing.jpg";

   titlebar5       = new Image();
   titlebar5.src   = "graphics/titlebar/carpet.jpg";

   titlebar6       = new Image();
   titlebar6.src   = "graphics/titlebar/janitorial.jpg";

   titlebar7       = new Image();
   titlebar7.src   = "graphics/titlebar/locality.jpg";


  }
 }