function wh(wc)
{
 h=270;
 w=175;
 lpos=screen.availWidth/2-h/2;
 rpos=screen.availHeight/2-w/2;
 urll='http://allrest.com/wheather.php?WhCode1='+wc;
 w=window.open("", "wheather",
 'height='+h+',width='+w+',status=no,scrollbar=no,toolbar=no,resizable=no,menubar=no,left='+lpos+',top='+rpos);
 w.location=urll;
 w.focus();
 return;
};

function HIm(h,n,x,y)
{
lpos=screen.availWidth/2-x/2;
rpos=screen.availHeight/2-y/2;
xx=screen.availWidth-20;
yy=screen.availHeight-80;
kx=0; ky=0;
if(x>xx) { kx=x/xx; k=kx;};
if(y>yy) { ky=y/yy; k=ky;};
if(kx>0 && ky>0) { if(kx>ky){ k=kx; }  else  { k=ky;};};
if(kx>0 || ky>0) {x=x/k; y=y/k;};
lpos=screen.availWidth/2-x/2;
rpos=screen.availHeight/2-y/2;

urll='http://allrest.com/HIm.php?h='+h+'&n='+n+'&rx='+xx+'&ry='+yy;
 w=window.open("", "",
   "height="+y+",width="+x+", titlebars=no, location=no, status=no, scrollbar=no, toolbar=no, resizable=no, menubar=no, left="+lpos+",top="+rpos);
 w.location=urll;
 w.focus();
 return;
};
