function changeIMG(id,src){
	 document[id.name].src=src;
	 }
function popup(url,name,w,h,l,t){
	if(!l)l=0;
	if(!h)h=0;
	style="width="+w+",height="+h+",left="+l+",top="+t;
	win=window.open(url,name,style);
	win.focus();
}
