
function OpenWin( path, win_name ){
    //win=window.open(path, win_name ,"width=620,height=200,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=auto,favorites=no,resizable=yes");
   win=window.open(path, win_name ,"width=630, height=470, scrollbars=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,favorites=no,resizable=yes");
}
function changeImages(imagename,imagefile) {
if (document.layers) {
	document.images[imagename].src = imagefile; 		// for N4
	}
else if (document.getElementById) {
	document.getElementById(imagename).src = imagefile; 	// for IE5, N6
	document.getElementById(imagename).style.border=0;
	}
else	{
	document.all(imagename).src = imagefile; 			// for IE4
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
