/*
Basic_func.js

3-18-02
Created the file
*/
var preloadImages = new Array()

function imgHi(sImage,sGraphic) {
	for (i=0;i<preloadImages.length;i++){
		if (preloadImages[i].src = sGraphic){
			document.images[sImage].src = sGraphic
		}
	}

}

function imgLow(sImage,sGraphic) {
	for (i=0;i<preloadImages.length;i++){
		if (preloadImages[i].src = sGraphic){
			document.images[sImage].src = sGraphic
		}
	}

}

function preloadImg(sImages) {
	for (i=0;i<preloadImg.arguments.length;i++){
		preloadImages[i] = new Image()
		preloadImages[i].src = preloadImg.arguments[i]
	}
}

function openImgWin(URL){
      newWindow  = window.open(URL, "NewWin", 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=450,height=550,top=0,left=0')
}			
