function doLoad(numimg,width,height) {
if (screen.availWidth){
	a=(screen.availWidth -width)/2;
	b=(screen.availHeight -height)/2-50;
}else{
	a=0;
	b=0;
}
window.open(numimg,'','menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',top='+b+',left='+a);
}
