function popup(linker, x, y)
   {
     x = x + 35;
     y = y + 80;
     pop = window.open(linker, "pop", "scrollbars=auto,resizable=yes,toolbar=no,top=10,left=10,menubar=no,location=no,width=" + x + ",height=" + y);
     pop.resizeTo(x,y);
     pop.focus();
   }
			

	

//function popup(linker)
//{
//  window.open(linker, "pop", "scrollbars=auto,resizable=yes,toolbar=no,top=10,left=10,menubar=no,location=no,height=420,width=620");
//}



