function OpenWindowSelfResize(URL){
	width = 400;
	height = 400;
	window.open (URL,"anyName","toolbar=no,location=no,scrollbars=no,width=400,height=400,personalbar=no,directories=no,menubar=no,titlebar=no,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
	return false;
}  