function doLoad(numimg,Width,Height,win) {
	Width+=20;
	Height+=20;
	if (screen.availWidth){
		b=(screen.availHeight - Height < 0) ? 0:(screen.availHeight - Height)/2-50;
		a=(screen.availWidth -Width)/2;
	}else{
		a=0;
		b=0;
	}
	if (! win){
  		window.open(''+numimg,'','menubar=no,scrollbars=no,resizable=no,width='+Width+',height='+Height+',top='+b+',left='+a);
	}else{
  		window.open(''+numimg,'','menubar=no,scrollbars=1,Status=1,resizable=1,width='+Width+',height='+Height+',top='+b+',left='+a);
	}
}

