function popup_resize(theURL) 
{
	winName="window";
	features="";
	features+=",top=";
	features+=screen.height/2-300;
	features+=",left=";
	features+=screen.width/2-350;
	features+=",width=700,height=550,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	window.open(theURL,winName,features);
}