// JavaScript Document

function updateImage(imageName, imagePath,text_name) {
   document.images[imageName].src = imagePath;
//   document.getElementById("color_name").innerHTML= text_name;   
}

function wind_opn(urlname,x,y)  //v4.0
{
 window.open(urlname,'','toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+x+', height='+y+'');
};