// ########## pre image
function preimg(crrntImg){
	for (i =0;i<crrntImg.length;i++) {
		var ImgList=new Array();
		ImgList[i]=new Image();
		ImgList[i].src=crrntImg[i];
	}
}

// ########## swap image
function chgimg(imgName,img){
	document.images[imgName].src = img;
}

// ########## Window Open
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}