function showmap(name)
 { 
  x=400;
	y=200;
  windowprops = "top=0,left=0,resizable=yes,scrollbars=yes" + ",width=" +(x+30)+ ",height=" +(y+70);
//  windowprops = "top=0,left=0,resizable=yes,scrollbars=yes" + ",width=" + (screen.width-10) + ",height=" + (screen.height-30);
//  windowprops = "top=0,left=0,resizable=yes,scrollbars=yes" + ",width=" + "795" + ",height=" + "200";
  win=window.open("../picwin.asp?pic=images/"+name,"xx", windowprops);
//	win.resizeTo(530,430);
	win.moveTo(210,230);

  }

