
  
function changeImage(imageName,imagePath){
	if(document.images){
  		document[imageName].src=imagePath;
	}
}


function openWin(path,theHeight,theWidth,theLeft,theTop,TOOLBAR,LOCATION,DIRECT,STATUS,MENUBAR,SCROLL,RESIZE){
	var MyWindow;
	var features='toolbar='+TOOLBAR+',';
	features+='location='+LOCATION+',';
	features+='directories='+DIRECT+',';
	features+='status='+STATUS+',';
	features+='menubar='+MENUBAR+',';
	features+='scrollbars='+SCROLL+',';
	features+='resizable='+RESIZE+',';
	features+='width='+theWidth+',height='+theHeight+',left='+theLeft+',top='+theTop;

	MyWindow=window.open(path,'MyWindow',features);
}


