function di(id,name){
  if (document.images) {document.images[id].src=eval(name+".src"); }
}
var n;
//This is global variable to point to opened window.
function nWind(nameWindow,wd,ht){
//This function open a new  window with desired sizes.
	n=window.open(nameWindow,"nw","height="+ht+",width="+wd+",top=50,left=50,resizable=1");
	n.resizeTo(wd,ht);
	n.focus();
	return false;
}

