function popup_uploadwindow ( url, name, width,height )
{
	newleft		= (screen.width - width ) / 2;
	newtop		= (screen.height - height ) / 2;
	window.open ( url, name, 'width=' + width + ',height=' + height + ',left=' + newleft + ',top=' + newtop );
}
