

function openPopup(theURL, thename, width, height, resizable) {
var hppopup =
window.open(theURL, thename,'toolbar=no,scrollbars=auto,location=no,statusbar=no,menubar=no,resizable=' + resizable + ',width=' + width + ',height=' + height + ',left = 300,top = 150');
hppopup.focus();
}

function doPreloadIndex()
{
	
   var the_images = new Array('images/topclear.gif', 'images/ipx.gif');
   preloadImages(the_images);
}

function doPreload()
{

   var the_images = new Array('../images/topclear.gif', '../images/ipx.gif');
   preloadImages(the_images);
}

function preloadImages(the_images_array) {

   for(var loop = 0; loop < the_images_array.length; loop++)
	
   {
 	var an_image = new Image();
	an_image.src = the_images_array[loop];
   }
}

