function TextPopup (url,w,h,title)
{
	thepopup=window.open(url,'name',',width=' + w + ',height=' + h + ',screenX=100,screenY=50,left=100,top=50,status=0,directories=no,scrollbars=yes,resizable=yes');
	if (window.focus) {thepopup.focus()};
}

